@pgpm/totp 0.5.0 → 0.6.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-totp
2
- DATA = sql/launchql-totp--0.4.0.sql
2
+ DATA = sql/launchql-totp--0.5.0.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/README.md CHANGED
@@ -62,7 +62,7 @@ pgpm deploy --createdb
62
62
 
63
63
  ```bash
64
64
  # Install workspace dependencies
65
- pgpm install
65
+ pnpm install
66
66
 
67
67
  # Deploy with dependencies
68
68
  pgpm deploy mydb1 --yes --createdb
@@ -1,6 +1,6 @@
1
1
  # launchql-totp extension
2
2
  comment = 'launchql-totp extension'
3
- default_version = '0.4.0'
3
+ default_version = '0.5.0'
4
4
  module_pathname = '$libdir/launchql-totp'
5
5
  requires = 'pgcrypto,plpgsql,launchql-base32,launchql-verify'
6
6
  relocatable = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/totp",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Time-based One-Time Password (TOTP) authentication",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -11,19 +11,19 @@
11
11
  "test:watch": "jest --watch"
12
12
  },
13
13
  "dependencies": {
14
- "@pgpm/base32": "0.5.0",
15
- "@pgpm/verify": "0.5.0"
14
+ "@pgpm/base32": "0.6.0",
15
+ "@pgpm/verify": "0.6.0"
16
16
  },
17
17
  "devDependencies": {
18
18
  "pgpm": "^0.2.0"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/launchql/extensions"
22
+ "url": "https://github.com/launchql/pgpm-modules"
23
23
  },
24
- "homepage": "https://github.com/launchql/extensions",
24
+ "homepage": "https://github.com/launchql/pgpm-modules",
25
25
  "bugs": {
26
- "url": "https://github.com/launchql/extensions/issues"
26
+ "url": "https://github.com/launchql/pgpm-modules/issues"
27
27
  },
28
- "gitHead": "d8eedbb24ad22a106634bc3b919bfb8d41976c16"
28
+ "gitHead": "c7d0eae588d7a764b382a330c8b853b341b13fb2"
29
29
  }