Skip to content

Commit 4cc6ded

Browse files
🔖 bump version 0.1.0a0 -> 0.1.0a1 (#8)
1 parent 01c39f7 commit 4cc6ded

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.copier/package.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ _commit: v2024.27-4-g3fe659b
33
_src_path: /home/josh/projects/work/django-twc-package
44
author_email: [email protected]
55
author_name: Josh Thomas
6-
current_version: 0.1.0
6+
current_version: 0.1.0a1
77
django_versions:
8-
- '4.2'
9-
- '5.0'
10-
- '5.1'
8+
- "4.2"
9+
- "5.0"
10+
- "5.1"
1111
docs_domain: readthedocs.io
1212
github_owner: joshuadavidthomas
1313
github_repo: bird
1414
module_name: bird
1515
package_description: A UI Kit for your Django projects
1616
package_name: bird
1717
python_versions:
18-
- '3.10'
19-
- '3.11'
20-
- '3.12'
21-
- '3.13'
18+
- "3.10"
19+
- "3.11"
20+
- "3.12"
21+
- "3.13"
2222
test_django_main: true
2323
versioning_scheme: SemVer

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Source = "https://github.com/joshuadavidthomas/django-bird"
5959
[tool.bumpver]
6060
commit = true
6161
commit_message = ":bookmark: bump version {old_version} -> {new_version}"
62-
current_version = "0.1.0a0"
62+
current_version = "0.1.0a1"
6363
push = false # set to false for CI
6464
tag = false
6565
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"

src/django_bird/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "0.1.0a0"
3+
__version__ = "0.1.0a1"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55

66
def test_version():
7-
assert __version__ == "0.1.0a0"
7+
assert __version__ == "0.1.0a1"

0 commit comments

Comments
 (0)