Skip to content

Commit 5164bad

Browse files
committed
Calendar Versioning using BumpVer
1 parent cb5dde9 commit 5164bad

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

dabest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
from ._stats_tools import effsize as effsize
2424
from ._classes import TwoGroupsEffectSize, PermutationTest
2525

26-
__version__ = "0.3.26"
26+
__version__ = "2023.02.14"

setup.cfg

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,21 @@
33
# 3. If at all possible, it is good practice to do this. If you cannot, you
44
# will need to generate wheels for each Python version that you support.
55
universal=1
6+
7+
[bumpver]
8+
current_version = "2023.02.14"
9+
version_pattern = "YYYY.0M.0D"
10+
commit_message = "bump version {old_version} -> {new_version}"
11+
commit = True
12+
tag = True
13+
push = True
14+
15+
[bumpver:file_patterns]
16+
setup.cfg =
17+
current_version = "{version}"
18+
setup.py =
19+
version='{version}'
20+
dabest/__init__.py =
21+
__version__ = "{version}"
22+
LICENSE =
23+
Copyright (c) 2016-YYYY Joses W. Ho

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
author_email='joseshowh@gmail.com',
3535
maintainer='Joses W. Ho',
3636
maintainer_email='joseshowh@gmail.com',
37-
version='0.3.26',
37+
version='2023.02.14',
3838
description=DESCRIPTION,
3939
long_description=LONG_DESCRIPTION,
4040
packages=find_packages(),

0 commit comments

Comments
 (0)