Skip to content

Commit

Permalink
🔖 Bump version: 0.3.0.dev0 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bunop committed Jun 28, 2024
1 parent 523d62e commit d2bceca
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[bumpversion]
current_version = 0.3.0.dev0
current_version = 0.3.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.{release}{build}
{major}.{minor}.{patch}
message = :bookmark: Bump version: {current_version} → {new_version}

[bumpversion:part:release]
optional_value = prod
first_value = dev
values =
values =
dev
prod

Expand Down
2 changes: 1 addition & 1 deletion flask-data/smarter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__copyright__ = "Copyright 2021, IBBA-CNR"
__credits__ = ["Paolo Cozzi, ..."]
__license__ = "GNU General Public License v3"
__version__ = "0.3.0.dev0"
__version__ = "0.3.0"
__maintainer__ = "Paolo Cozzi"
__email__ = '[email protected]'
__status__ = "Development"
2 changes: 1 addition & 1 deletion flask-data/smarter/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from resources.errors import errors
from resources.routes import initialize_routes

__version__ = "0.3.0.dev0"
__version__ = "0.3.0"

# https://flask.palletsprojects.com/en/2.0.x/logging/#basic-configuration
dictConfig({
Expand Down
2 changes: 1 addition & 1 deletion flask-data/smarter/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'Paolo Cozzi'

# The full version, including alpha/beta/rc tags
release = 'v0.3.0.dev0'
release = 'v0.3.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "smarter-backend"
version = "0.3.0.dev0"
version = "0.3.0"
description = "SMARTER Backend API"
authors = ["Paolo Cozzi <[email protected]>"]
license = "GPLv3"
Expand Down

0 comments on commit d2bceca

Please sign in to comment.