Skip to content

Commit 08c53f3

Browse files
2.0.1 - always missing something
1 parent 7e532ff commit 08c53f3

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

jiggle_version/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
]
1212

1313
__title__ = "jiggle_version"
14-
__version__ = "2.0.0"
14+
__version__ = "2.0.1"
1515
__description__ = "Increment version number found in source code without regex"
1616
__readme__ = "README.md"
1717
__keywords__ = ["version", "version-numbers"]

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jiggle_version"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "Increment version number found in source code without regex"
55
readme = "README.md"
66
authors = [{ name = "Matthew Martin", email = "matthewdeanmartin@gmail.com" }]
@@ -12,8 +12,9 @@ requires-python = ">=3.8"
1212
dependencies = [
1313
"rich-argparse",
1414
"tomli; python_version < '3.11'",
15-
"pathspec>=0.12"
15+
"pathspec>=0.12",
1616
# "importlib-resources; python_version < '3.9'",
17+
"tomlkit"
1718
]
1819

1920
[dependency-groups]

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
33
envlist =
4-
; py38
5-
; py39
4+
py38
5+
py39
66
; py310
77
; py311
88
; py312
99
; py313
10-
py314
10+
; py314
1111

1212
[testenv]
1313
deps =
1414
parameterized
1515
pytest>=7.1.0
1616
pytest-cov>=4.0.0
1717
commands =
18-
python -c "import test.tox_banner"
18+
# python -c "import test.tox_banner"
1919
py.test test --cov-report term-missing --cov=jiggle_version

uv.lock

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)