pgplan 0.4.1 → 0.5.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 +10 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # pgplan
2
2
 
3
+ [![GitHub Release](https://img.shields.io/github/v/release/JacobArthurs/pgplan)](https://github.com/JacobArthurs/pgplan/releases/latest)
4
+ [![npm](https://img.shields.io/npm/v/pgplan)](https://www.npmjs.com/package/pgplan)
5
+ [![PyPI](https://img.shields.io/pypi/v/pgplan)](https://pypi.org/project/pgplan/)
6
+ [![Go Reference](https://pkg.go.dev/badge/github.com/jacobarthurs/pgplan.svg)](https://pkg.go.dev/github.com/jacobarthurs/pgplan)
7
+ [![Go Report Card](https://goreportcard.com/badge/github.com/jacobarthurs/pgplan)](https://goreportcard.com/report/github.com/jacobarthurs/pgplan)
8
+ [![ci](https://img.shields.io/github/actions/workflow/status/JacobArthurs/pgplan/ci.yml?branch=main)](https://github.com/JacobArthurs/pgplan/actions/workflows/ci.yml)
9
+ [![go version](https://img.shields.io/github/go-mod/go-version/JacobArthurs/pgplan)](./go.mod)
10
+ [![License](https://img.shields.io/github/license/JacobArthurs/pgplan)](LICENSE)
11
+
3
12
  A command-line tool for analyzing and comparing PostgreSQL query execution plans. Get optimization insights and track performance regressions without leaving your terminal.
4
13
 
5
14
  ## Features
@@ -18,7 +27,7 @@ A command-line tool for analyzing and comparing PostgreSQL query execution plans
18
27
  pip install pgplan
19
28
  ```
20
29
 
21
- ### [NPM](https://www.npmjs.com/package/pgplan)
30
+ ### [npm](https://www.npmjs.com/package/pgplan)
22
31
 
23
32
  ```bash
24
33
  npm i -g pgplan
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgplan",
3
- "version": "0.4.1",
3
+ "version": "0.5.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.4.1",
24
- "@pgplan/linux-arm64": "0.4.1",
25
- "@pgplan/darwin-x64": "0.4.1",
26
- "@pgplan/darwin-arm64": "0.4.1",
27
- "@pgplan/win32-x64": "0.4.1"
23
+ "@pgplan/linux-x64": "0.5.0",
24
+ "@pgplan/linux-arm64": "0.5.0",
25
+ "@pgplan/darwin-x64": "0.5.0",
26
+ "@pgplan/darwin-arm64": "0.5.0",
27
+ "@pgplan/win32-x64": "0.5.0"
28
28
  }
29
29
  }