@pgpm/inflection 0.7.1 → 0.8.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-inflection
2
- DATA = sql/launchql-inflection--0.6.0.sql
2
+ DATA = sql/launchql-inflection--0.7.2.sql
3
3
 
4
4
  PG_CONFIG = pg_config
5
5
  PGXS := $(shell $(PG_CONFIG) --pgxs)
package/README.md CHANGED
@@ -67,13 +67,13 @@ pgpm deploy
67
67
  ```bash
68
68
  # 1. Create a workspace
69
69
  pgpm init --workspace
70
- cd my-app
71
70
 
72
71
  # 2. Create your first module
72
+ cd my-workspace
73
73
  pgpm init
74
- cd packages/your-module
75
74
 
76
- # 3. Install a package
75
+ # 3. Install a package
76
+ cd packages/my-module
77
77
  pgpm install @pgpm/inflection
78
78
 
79
79
  # 4. Deploy everything
@@ -1,6 +1,6 @@
1
1
  # launchql-inflection extension
2
2
  comment = 'launchql-inflection extension'
3
- default_version = '0.6.0'
3
+ default_version = '0.7.2'
4
4
  module_pathname = '$libdir/launchql-inflection'
5
5
  requires = 'plpgsql,unaccent,uuid-ossp,launchql-verify'
6
6
  relocatable = false
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@pgpm/inflection",
3
- "version": "0.7.1",
3
+ "version": "0.8.0",
4
4
  "description": "String inflection utilities for PostgreSQL naming conventions",
5
+ "author": "Dan Lynch <pyramation@gmail.com>",
6
+ "contributors": [
7
+ "Interweb <developers@interweb.co>"
8
+ ],
5
9
  "keywords": [
6
10
  "postgresql",
7
11
  "pgpm",
@@ -17,7 +21,7 @@
17
21
  "test:watch": "jest --watch"
18
22
  },
19
23
  "dependencies": {
20
- "@pgpm/verify": "0.7.1"
24
+ "@pgpm/verify": "0.8.0"
21
25
  },
22
26
  "devDependencies": {
23
27
  "pgpm": "^0.2.0"
@@ -30,5 +34,5 @@
30
34
  "bugs": {
31
35
  "url": "https://github.com/launchql/pgpm-modules/issues"
32
36
  },
33
- "gitHead": "f3156553b409bd27b66ac03562151d439d779f53"
37
+ "gitHead": "76daa8923128fd8f93a8fd5303239ec998c0bf98"
34
38
  }