@pgpm/stamps 0.7.2 → 0.9.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.
package/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  EXTENSION = launchql-stamps
2
- DATA = sql/launchql-stamps--0.6.0.sql
2
+ DATA = sql/launchql-stamps--0.7.2.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/README.md CHANGED
@@ -64,13 +64,13 @@ pgpm deploy
64
64
  ```bash
65
65
  # 1. Create a workspace
66
66
  pgpm init --workspace
67
- cd my-app
68
67
 
69
68
  # 2. Create your first module
69
+ cd my-workspace
70
70
  pgpm init
71
- cd packages/your-module
72
71
 
73
- # 3. Install a package
72
+ # 3. Install a package
73
+ cd packages/my-module
74
74
  pgpm install @pgpm/stamps
75
75
 
76
76
  # 4. Deploy everything
@@ -1,6 +1,6 @@
1
1
  # launchql-stamps extension
2
2
  comment = 'launchql-stamps extension'
3
- default_version = '0.6.0'
3
+ default_version = '0.7.2'
4
4
  module_pathname = '$libdir/launchql-stamps'
5
5
  requires = 'plpgsql,launchql-jwt-claims,launchql-verify'
6
6
  relocatable = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/stamps",
3
- "version": "0.7.2",
3
+ "version": "0.9.0",
4
4
  "description": "Timestamp utilities and audit trail functions for PostgreSQL",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -21,8 +21,8 @@
21
21
  "test:watch": "jest --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@pgpm/jwt-claims": "0.7.2",
25
- "@pgpm/verify": "0.7.2"
24
+ "@pgpm/jwt-claims": "0.9.0",
25
+ "@pgpm/verify": "0.9.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "pgpm": "^0.2.0"
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/launchql/pgpm-modules/issues"
37
37
  },
38
- "gitHead": "e7d646fafaaa1dfd1c15413c875a8844d7500707"
38
+ "gitHead": "7cb34c75176e820a490de0442814425303a3ab1f"
39
39
  }