tree-sitter-postgres 1.0.0__tar.gz → 1.1.0__tar.gz

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 (19) hide show
  1. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/PKG-INFO +7 -7
  2. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/README.md +6 -6
  3. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/PKG-INFO +7 -7
  4. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/pyproject.toml +1 -1
  5. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/LICENSE +0 -0
  6. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres/__init__.py +0 -0
  7. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres/__init__.pyi +0 -0
  8. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres/binding.c +0 -0
  9. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres/py.typed +0 -0
  10. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/SOURCES.txt +0 -0
  11. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/dependency_links.txt +0 -0
  12. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/not-zip-safe +0 -0
  13. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/requires.txt +0 -0
  14. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/bindings/python/tree_sitter_postgres.egg-info/top_level.txt +0 -0
  15. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/plpgsql/src/parser.c +0 -0
  16. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/plpgsql/src/scanner.c +0 -0
  17. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/postgres/src/parser.c +0 -0
  18. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/setup.cfg +0 -0
  19. {tree_sitter_postgres-1.0.0 → tree_sitter_postgres-1.1.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tree-sitter-postgres
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Postgres grammar for tree-sitter
5
5
  License: BSD-3-Clause
6
6
  Project-URL: Homepage, https://github.com/gmr/tree-sitter-postgres
@@ -39,16 +39,16 @@ cd postgres && npx tree-sitter generate && npx tree-sitter test
39
39
 
40
40
  ## Regenerating from PostgreSQL source
41
41
 
42
- The grammar is generated from a local PostgreSQL checkout:
42
+ The grammar is generated from a local PostgreSQL checkout. Set `PG_SOURCE_DIR` to point at your PostgreSQL source tree:
43
43
 
44
44
  ```bash
45
- # Default: ~/Source/gmr/postgres
46
- node script/generate-grammar.js
45
+ export PG_SOURCE_DIR=/path/to/postgres
47
46
 
48
- # Or specify the path
49
- node script/generate-grammar.js /path/to/postgres
47
+ # Using just (recommended)
48
+ just generate
50
49
 
51
- # Then build the parser
50
+ # Or run the script directly
51
+ node script/generate-grammar.js "$PG_SOURCE_DIR"
52
52
  cd postgres && npx tree-sitter generate
53
53
  ```
54
54
 
@@ -20,16 +20,16 @@ cd postgres && npx tree-sitter generate && npx tree-sitter test
20
20
 
21
21
  ## Regenerating from PostgreSQL source
22
22
 
23
- The grammar is generated from a local PostgreSQL checkout:
23
+ The grammar is generated from a local PostgreSQL checkout. Set `PG_SOURCE_DIR` to point at your PostgreSQL source tree:
24
24
 
25
25
  ```bash
26
- # Default: ~/Source/gmr/postgres
27
- node script/generate-grammar.js
26
+ export PG_SOURCE_DIR=/path/to/postgres
28
27
 
29
- # Or specify the path
30
- node script/generate-grammar.js /path/to/postgres
28
+ # Using just (recommended)
29
+ just generate
31
30
 
32
- # Then build the parser
31
+ # Or run the script directly
32
+ node script/generate-grammar.js "$PG_SOURCE_DIR"
33
33
  cd postgres && npx tree-sitter generate
34
34
  ```
35
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tree-sitter-postgres
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Postgres grammar for tree-sitter
5
5
  License: BSD-3-Clause
6
6
  Project-URL: Homepage, https://github.com/gmr/tree-sitter-postgres
@@ -39,16 +39,16 @@ cd postgres && npx tree-sitter generate && npx tree-sitter test
39
39
 
40
40
  ## Regenerating from PostgreSQL source
41
41
 
42
- The grammar is generated from a local PostgreSQL checkout:
42
+ The grammar is generated from a local PostgreSQL checkout. Set `PG_SOURCE_DIR` to point at your PostgreSQL source tree:
43
43
 
44
44
  ```bash
45
- # Default: ~/Source/gmr/postgres
46
- node script/generate-grammar.js
45
+ export PG_SOURCE_DIR=/path/to/postgres
47
46
 
48
- # Or specify the path
49
- node script/generate-grammar.js /path/to/postgres
47
+ # Using just (recommended)
48
+ just generate
50
49
 
51
- # Then build the parser
50
+ # Or run the script directly
51
+ node script/generate-grammar.js "$PG_SOURCE_DIR"
52
52
  cd postgres && npx tree-sitter generate
53
53
  ```
54
54
 
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "tree-sitter-postgres"
7
7
  description = "Postgres grammar for tree-sitter"
8
- version = "1.0.0"
8
+ version = "1.1.0"
9
9
  keywords = ["incremental", "parsing", "tree-sitter", "postgres"]
10
10
  classifiers = [
11
11
  "Intended Audience :: Developers",