Skip to content

Commit

Permalink
Beta.13: Hot fix (#273)
Browse files Browse the repository at this point in the history
* Add the jsonschema dependency in pyproject.toml file as well

* Bump version: 3.0.0-beta.12 → 3.0.0-beta.13
  • Loading branch information
kavitharaju authored Nov 11, 2024
1 parent e14a3de commit f058c7e
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.0-beta.12
current_version = 3.0.0-beta.13
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-(?P<release>\w+).(?P<num>\d+)
Expand Down
7 changes: 4 additions & 3 deletions py-usfm-parser/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "usfm-grammar"
version = "3.0.0-beta.12"
version = "3.0.0-beta.13"
description = "Python parser for USFM files, based on tree-sitter-usfm3"
readme = "README.md"
authors = [{ name = "BCS Team", email = "[email protected]" }]
Expand All @@ -23,8 +23,9 @@ classifiers = [
keywords = ["usfm", "parser", "grammar", "tree-sitter"]
dependencies = [
'tree-sitter==0.22.3; python_version >= "3.9"',
'tree-sitter-usfm3==3.0.0-beta.12; python_version >="3.8"',
'lxml==5.2.2; python_version >= "3.5"'
'tree-sitter-usfm3==3.0.0-beta.13; python_version >="3.8"',
'lxml==5.2.2; python_version >= "3.5"',
'jsonschema=4.23.0; python_version>= "3.8"'
]
requires-python = ">=3.10"

Expand Down
2 changes: 1 addition & 1 deletion py-usfm-parser/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tree-sitter==0.22.3
tree-sitter-usfm3==3.0.0-beta.12
tree-sitter-usfm3==3.0.0-beta.13
lxml==5.2.2
jsonschema==4.23.0
2 changes: 1 addition & 1 deletion py-usfm-parser/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def has_ext_modules(self):

setup(
name="usfm-grammar", # Required
version="3.0.0-beta.12", # Required
version="3.0.0-beta.13", # Required
python_requires=">=3.10",
# install_requires=["tree-sitter==0.22.3",
# "tree-sitter-usfm3==3.0.0-beta.7",
Expand Down
2 changes: 1 addition & 1 deletion py-usfm-parser/src/usfm_grammar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

Validator = validator.Validator

__version__ = "3.0.0-beta.12"
__version__ = "3.0.0-beta.13"
4 changes: 2 additions & 2 deletions tree-sitter-usfm3/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tree-sitter-usfm3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-usfm3",
"version": "3.0.0-beta.12",
"version": "3.0.0-beta.13",
"description": "Grammar representation and parser for USFM language using tree-sitter",
"main": "bindings/node",
"types": "bindings/node",
Expand Down
2 changes: 1 addition & 1 deletion tree-sitter-usfm3/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "tree-sitter-usfm3"
description = "Usfm3 grammar for tree-sitter"
version = "3.0.0-beta.12"
version = "3.0.0-beta.13"
keywords = ["incremental", "parsing", "tree-sitter", "usfm3"]
classifiers = [
"Intended Audience :: Developers",
Expand Down

0 comments on commit f058c7e

Please sign in to comment.