Skip to content

Commit 6d02fa5

Browse files
committed
Update version scheme to calendar versioning
1 parent 03c90f4 commit 6d02fa5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ CLI app for managing GitHub labels for Python 3.6 and newer. 📝
1010
pip install labels
1111
```
1212

13+
Versions follow [Calendar Versioning][calver] using a `YY.MINOR.MICRO` scheme. 🗓
14+
1315
## Authentication
1416

1517
The labels CLI connects to the GitHub API to modify labels for a GitHub
@@ -173,6 +175,7 @@ Distributed under the terms of the MIT license, **labels** is free and open
173175
source software.
174176

175177
[PyPI]: https://pypi.org/project/labels/
178+
[calver]: https://calver.org
176179
[code of conduct]: https://github.com/hackebrot/labels/blob/master/CODE_OF_CONDUCT.md
177180
[contributing]: https://github.com/hackebrot/labels/blob/master/.github/CONTRIBUTING.md
178181
[create token]: https://blog.github.com/2013-05-16-personal-api-tokens/

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(*args: str) -> str:
99

1010
setuptools.setup(
1111
name="labels",
12-
version="0.3.0.dev0",
12+
version="20.1.0.dev0",
1313
author="Raphael Pierzina",
1414
author_email="[email protected]",
1515
maintainer="Raphael Pierzina",

src/labels/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.0.dev0"
1+
__version__ = "20.1.0.dev0"
22
__title__ = "labels"
33
__description__ = "CLI app for managing GitHub labels for Python 3.6 and newer. 📝"
44
__url__ = "https://github.com/hackebrot/labels"

0 commit comments

Comments
 (0)