pgplan 0.2.1 → 0.3.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 +8 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -12,10 +12,10 @@ A command-line tool for analyzing and comparing PostgreSQL query execution plans
12
12
 
13
13
  ## Installation
14
14
 
15
- ### [Go](https://pkg.go.dev/github.com/jacobarthurs/pgplan)
15
+ ### [PyPI](https://pypi.org/project/pgplan/)
16
16
 
17
17
  ```bash
18
- go install github.com/jacobarthurs/pgplan@latest
18
+ pip install pgplan
19
19
  ```
20
20
 
21
21
  ### [NPM](https://www.npmjs.com/package/pgplan)
@@ -24,6 +24,12 @@ go install github.com/jacobarthurs/pgplan@latest
24
24
  npm i -g pgplan
25
25
  ```
26
26
 
27
+ ### [Go](https://pkg.go.dev/github.com/jacobarthurs/pgplan)
28
+
29
+ ```bash
30
+ go install github.com/jacobarthurs/pgplan@latest
31
+ ```
32
+
27
33
  ### Binary
28
34
 
29
35
  Download the latest release for your platform from the [releases page](https://github.com/JacobArthurs/pgplan/releases/latest).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgplan",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Analyze and compare PostgreSQL query plans",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,10 +20,10 @@
20
20
  "README.md"
21
21
  ],
22
22
  "optionalDependencies": {
23
- "@pgplan/linux-x64": "0.2.1",
24
- "@pgplan/linux-arm64": "0.2.1",
25
- "@pgplan/darwin-x64": "0.2.1",
26
- "@pgplan/darwin-arm64": "0.2.1",
27
- "@pgplan/win32-x64": "0.2.1"
23
+ "@pgplan/linux-x64": "0.3.0",
24
+ "@pgplan/linux-arm64": "0.3.0",
25
+ "@pgplan/darwin-x64": "0.3.0",
26
+ "@pgplan/darwin-arm64": "0.3.0",
27
+ "@pgplan/win32-x64": "0.3.0"
28
28
  }
29
29
  }