squawk-cli 1.6.0 → 1.6.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 +8 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -242,22 +242,20 @@ s/new-rule 'prefer big serial'
242
242
 
243
243
  ### releasing a new version
244
244
 
245
- 1. update the CHANGELOG.md and bump version in the cli `Cargo.toml`, ensure the
246
- lock file is updated, and update `package.json` and commit the changes
245
+ 1. Update the `CHANGELOG.md`
246
+
247
+ Include a description of any fixes / additions. Make sure to include the PR numbers and credit the authors.
248
+
249
+ 2. Run `s/update-version`
247
250
 
248
251
  ```bash
249
- # update version in Cargo.toml files and package.json to 4.5.3
252
+ # update version in cli/Cargo.toml, package.json, flake.nix to 4.5.3
250
253
  s/update-version 4.5.3
251
254
  ```
252
255
 
253
- 2. create a new release on github - CI will attach the binaries automatically
254
- 3. wait for build artifacts to be attached to release.
255
- 4. login to `npm` and publish new version.
256
+ 3. Create a new release on GitHub
256
257
 
257
- ```bash
258
- npm login
259
- npm publish
260
- ```
258
+ Use the text and version from the `CHANGELOG.md`
261
259
 
262
260
  ### algolia
263
261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "linter for PostgreSQL, focused on migrations",
5
5
  "repository": "git@github.com:sbdchd/squawk.git",
6
6
  "author": "Steve Dignam <steve@dignam.xyz>",