Skip to content

Commit 5755dd6

Browse files
committed
feat: Bump version to 0.0.7 and fix version attribute
1 parent dc41edc commit 5755dd6

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

cedarscript_grammar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from tree_sitter import Language
66

7-
__version__ = "0.0.6"
7+
__version__ = "0.0.7"
88
__all__ = ("language",)
99

1010
_ROOT_DIR = Path(__file__).parent

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cedarscript-grammar"
7-
version = "0.0.6"
7+
dynamic = ["version"]
88
description = "CEDARScript grammar.js for tree-sitter"
99
authors = [
1010
{name = "Elifarley", email = "cedarscript@orgecc.com"},
@@ -36,12 +36,13 @@ Homepage = "https://github.com/CEDARScript/cedarscript-grammar#readme"
3636
[tool.setuptools]
3737
packages = ["cedarscript_grammar"]
3838

39-
[tool.setuptools.package-data]
40-
cedarscript_grammar = ["py.typed", "*.so", "*.dylib", "*.dll"]
41-
4239
[tool.setuptools.dynamic]
4340
version = {attr = "cedarscript_grammar.__version__"}
4441

42+
[tool.setuptools.package-data]
43+
"cedarscript_grammar" = ["py.typed", "*.so", "*.dylib", "*.dll"]
44+
45+
4546
[tool.black]
4647
line-length = 100
4748
target-version = ['py39']

0 commit comments

Comments
 (0)