tree-sitter-pgn 1.1.4__tar.gz → 1.2.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.

Potentially problematic release.


This version of tree-sitter-pgn might be problematic. Click here for more details.

Files changed (22) hide show
  1. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/PKG-INFO +3 -5
  2. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/PKG-INFO +3 -5
  3. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/SOURCES.txt +1 -1
  4. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/pyproject.toml +2 -3
  5. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/src/parser.c +13473 -12420
  6. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/src/tree_sitter/alloc.h +4 -4
  7. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/src/tree_sitter/array.h +2 -1
  8. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/src/tree_sitter/parser.h +27 -7
  9. tree_sitter_pgn-1.2.0/tree-sitter.json +36 -0
  10. tree_sitter_pgn-1.1.4/LICENSE +0 -25
  11. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/README.md +0 -0
  12. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn/__init__.py +0 -0
  13. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn/__init__.pyi +0 -0
  14. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn/binding.c +0 -0
  15. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn/py.typed +0 -0
  16. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/dependency_links.txt +0 -0
  17. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/not-zip-safe +0 -0
  18. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/requires.txt +0 -0
  19. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/bindings/python/tree_sitter_pgn.egg-info/top_level.txt +0 -0
  20. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/setup.cfg +0 -0
  21. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/setup.py +0 -0
  22. {tree_sitter_pgn-1.1.4 → tree_sitter_pgn-1.2.0}/src/scanner.c +0 -0
@@ -1,18 +1,16 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: tree-sitter-pgn
3
- Version: 1.1.4
3
+ Version: 1.2.0
4
4
  Summary: PGN grammar for tree-sitter
5
- License: BSD
5
+ License: BSD-2-Clause
6
6
  Project-URL: Homepage, https://github.com/rolandwalker/tree-sitter-pgn
7
7
  Keywords: incremental,parsing,tree-sitter,PGN,chess
8
8
  Classifier: Intended Audience :: Developers
9
- Classifier: License :: OSI Approved :: BSD License
10
9
  Classifier: Topic :: Software Development :: Compilers
11
10
  Classifier: Topic :: Text Processing :: Linguistic
12
11
  Classifier: Typing :: Typed
13
12
  Requires-Python: >=3.8
14
13
  Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
14
  Provides-Extra: core
17
15
  Requires-Dist: tree-sitter~=0.23.0; extra == "core"
18
16
 
@@ -1,18 +1,16 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: tree-sitter-pgn
3
- Version: 1.1.4
3
+ Version: 1.2.0
4
4
  Summary: PGN grammar for tree-sitter
5
- License: BSD
5
+ License: BSD-2-Clause
6
6
  Project-URL: Homepage, https://github.com/rolandwalker/tree-sitter-pgn
7
7
  Keywords: incremental,parsing,tree-sitter,PGN,chess
8
8
  Classifier: Intended Audience :: Developers
9
- Classifier: License :: OSI Approved :: BSD License
10
9
  Classifier: Topic :: Software Development :: Compilers
11
10
  Classifier: Topic :: Text Processing :: Linguistic
12
11
  Classifier: Typing :: Typed
13
12
  Requires-Python: >=3.8
14
13
  Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
14
  Provides-Extra: core
17
15
  Requires-Dist: tree-sitter~=0.23.0; extra == "core"
18
16
 
@@ -1,7 +1,7 @@
1
- LICENSE
2
1
  README.md
3
2
  pyproject.toml
4
3
  setup.py
4
+ tree-sitter.json
5
5
  bindings/python/tree_sitter_pgn/__init__.py
6
6
  bindings/python/tree_sitter_pgn/__init__.pyi
7
7
  bindings/python/tree_sitter_pgn/binding.c
@@ -5,17 +5,16 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "tree-sitter-pgn"
7
7
  description = "PGN grammar for tree-sitter"
8
- version = "1.1.4"
8
+ version = "1.2.0"
9
9
  keywords = ["incremental", "parsing", "tree-sitter", "PGN", "chess"]
10
10
  classifiers = [
11
11
  "Intended Audience :: Developers",
12
- "License :: OSI Approved :: BSD License",
13
12
  "Topic :: Software Development :: Compilers",
14
13
  "Topic :: Text Processing :: Linguistic",
15
14
  "Typing :: Typed"
16
15
  ]
17
16
  requires-python = ">=3.8"
18
- license.text = "BSD"
17
+ license.text = "BSD-2-Clause"
19
18
  readme = "README.md"
20
19
 
21
20
  [project.urls]