Skip to content

Commit 4f30f7d

Browse files
committed
fixed versioning mismatch
1 parent b93dfa8 commit 4f30f7d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.1.5"
2+
current_version = "0.1.4"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
pip install --upgrade pip
35-
pip install --upgrade bump-my-version
35+
pip install --upgrade bump-my-version hatch twine
3636
3737
- name: Configure Git
3838
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "cursor-utils"
7-
version = "0.1.5"
7+
version = "0.1.4"
88
description = "Give your Cursor IDE Agents superpowers."
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/cursor_utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
This file is read by the build system to determine the version of the package.
55
"""
66

7-
__version__ = "0.1.5"
7+
__version__ = "0.1.4"

0 commit comments

Comments
 (0)