diff options
| author | Brett Curran <brettjcurran@gmail.com> | 2026-02-12 13:12:07 +1100 |
|---|---|---|
| committer | Brett Curran <brettjcurran@gmail.com> | 2026-02-12 13:12:07 +1100 |
| commit | c6ea6efcbb9e1558d32f4a584d574ab301df41c4 (patch) | |
| tree | 5ddf81c09f7757c2184ddf0e26f65fe4790eb6a1 /pyproject.toml | |
| parent | b1cff893077f8042c57fa387d057e644877ccc88 (diff) | |
fix vim-like navigation in panes
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index b53adf9..152e07a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,3 +7,25 @@ requires-python = ">=3.12" dependencies = [ "textual>=7.5.0", ] + +[tool.bumpversion] +current_version = "0.1.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 = true +sign_tags = false +tag_name = "v{new_version}" +tag_message = "Bump version: {current_version} → {new_version}" +allow_dirty = false +commit = true +message = "Bump version: {current_version} → {new_version}" +moveable_tags = [] +commit_args = "" +setup_hooks = [] +pre_commit_hooks = [] +post_commit_hooks = [] |
