Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotfontaine committed Oct 2, 2024
1 parent de083b4 commit 30dd40d
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 9 deletions.
45 changes: 45 additions & 0 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[tool.bumpversion]
current_version = "0.2.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []

[[tool.bumpversion.files]]
filename = "pyproject.toml"

[[tool.bumpversion.files]]
filename = "cargo.toml"

[[tool.bumpversion.files]]
filename = "cargo.lock"

[[tool.bumpversion.files]]
filename = "Makefile"

[[tool.bumpversion.files]]
filename = "package.json"

[[tool.bumpversion.files]]
filename = "package-lock.json"
search = "\"name\": \"tree-sitter-cylc\",\n \"version\": \"{current_version}\""
replace = "\"name\": \"tree-sitter-cylc\",\n \"version\": \"{new_version}\""

[[tool.bumpversion.files]]
filename = "package-lock.json"
search = "\"name\": \"tree-sitter-cylc\",\n \"version\": \"{current_version}\""
replace = "\"name\": \"tree-sitter-cylc\",\n \"version\": \"{new_version}\""
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-cylc"
description = "Cylc grammar for tree-sitter"
version = "0.1.0"
version = "0.2.0"
license = "MIT"
readme = "README.md"
keywords = ["incremental", "parsing", "tree-sitter", "cylc"]
Expand Down
2 changes: 1 addition & 1 deletion Makefile

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

4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-cylc",
"version": "0.1.0",
"version": "0.2.0",
"description": "Cylc grammar for tree-sitter",
"license": "MIT",
"author": "Elliot Fontaine <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion 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-cylc"
description = "Cylc grammar for tree-sitter"
version = "0.1.0"
version = "0.2.0"
keywords = ["incremental", "parsing", "tree-sitter", "cylc"]
classifiers = [
"Intended Audience :: Developers",
Expand Down

0 comments on commit 30dd40d

Please sign in to comment.