squawk-cli 0.13.1 → 0.14.0

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 +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -95,6 +95,10 @@ OPTIONS:
95
95
  --explain <rule>
96
96
  Provide documentation on the given rule
97
97
 
98
+ --pg-version <pg-version>
99
+ Specify postgres version
100
+
101
+ For example: --pg-version=13.0
98
102
  --reporter <reporter>
99
103
  Style of error reporting [possible values: Tty, Gcc, Json]
100
104
 
@@ -203,6 +207,17 @@ cargo run
203
207
  ./s/fmt
204
208
  ```
205
209
 
210
+ ... or with nix:
211
+
212
+ ```
213
+ $ nix develop
214
+ [nix-shell]$ cargo run
215
+ [nix-shell]$ cargo insta review
216
+ [nix-shell]$ ./s/test
217
+ [nix-shell]$ ./s/lint
218
+ [nix-shell]$ ./s/fmt
219
+ ```
220
+
206
221
  ### releasing a new version
207
222
 
208
223
  1. update the CHANGELOG.md and bump version in the cli `Cargo.toml`, ensure the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "0.13.1",
3
+ "version": "0.14.0",
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>",