Skip to content

Commit

Permalink
Bump version -> v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonMaxfield committed Dec 2, 2021
1 parent d7328a9 commit 82952da
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Make sure all your changes are committed.
Then run:

```bash
$ bump2version dev_release # possible: major / minor / patch / dev_release
$ bump2version patch # possible: major / minor / patch
$ git push
$ git push --tags
```
Expand Down
2 changes: 1 addition & 1 deletion cdp_backend/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

# Do not edit this string manually, always use bump2version
# Details in CONTRIBUTING.md
__version__ = "3.0.0.dev27"
__version__ = "3.0.0"
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 3.0.0.dev27
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+).dev(?P<dev_release>\d+)
serialize = {major}.{minor}.{patch}.dev{dev_release}
current_version = 3.0.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@
url="https://github.com/CouncilDataProject/cdp-backend",
# Do not edit this string manually, always use bump2version
# Details in CONTRIBUTING.rst
version="3.0.0.dev27",
version="3.0.0",
zip_safe=False,
)

0 comments on commit 82952da

Please sign in to comment.