Skip to content

Commit 82952da

Browse files
author
JacksonMaxfield
committed
Bump version -> v3.0.0
1 parent d7328a9 commit 82952da

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Make sure all your changes are committed.
6565
Then run:
6666
6767
```bash
68-
$ bump2version dev_release # possible: major / minor / patch / dev_release
68+
$ bump2version patch # possible: major / minor / patch
6969
$ git push
7070
$ git push --tags
7171
```

cdp_backend/version.py

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

44
# Do not edit this string manually, always use bump2version
55
# Details in CONTRIBUTING.md
6-
__version__ = "3.0.0.dev27"
6+
__version__ = "3.0.0"

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
2-
current_version = 3.0.0.dev27
3-
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+).dev(?P<dev_release>\d+)
4-
serialize = {major}.{minor}.{patch}.dev{dev_release}
2+
current_version = 3.0.0
3+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4+
serialize = {major}.{minor}.{patch}
55
commit = True
66
tag = True
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,6 @@
148148
url="https://github.com/CouncilDataProject/cdp-backend",
149149
# Do not edit this string manually, always use bump2version
150150
# Details in CONTRIBUTING.rst
151-
version="3.0.0.dev27",
151+
version="3.0.0",
152152
zip_safe=False,
153153
)

0 commit comments

Comments
 (0)