@staticn0va/wigolo 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -273,10 +273,11 @@ Releases are triggered by pushing a version tag. CI handles the rest.
273
273
 
274
274
  ```bash
275
275
  # on main, all changes committed and pushed
276
- npm version patch # or: minor / major
277
- git push --follow-tags
276
+ make release-patch # or: release-minor / release-major
278
277
  ```
279
278
 
279
+ Run `make help` for all targets, or `make release-dry-run` to preview the npm tarball.
280
+
280
281
  The `release` workflow will:
281
282
  1. Build a clean `dist/`
282
283
  2. Verify the tag matches `package.json` version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staticn0va/wigolo",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Local-first web search MCP server for AI coding agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",