Skip to content

Commit

Permalink
Bump version: 0.13.0 → 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmehl committed Dec 27, 2021
1 parent 2f71845 commit 69eebf8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.0
current_version = 0.14.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -76,7 +76,7 @@
# The full version, including alpha/beta/rc tags.
release = get_distribution("reuse").version
except DistributionNotFound:
release = "0.13.0"
release = "0.14.0"
# The short X.Y.Z version.
version = ".".join(release.split(".")[:3])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,7 +40,7 @@

setup_requirements = ["setuptools_scm"]

fallback_version = "0.13.0"
fallback_version = "0.14.0"


def readme_md():
Expand Down
2 changes: 1 addition & 1 deletion src/reuse/__init__.py
Expand Up @@ -18,7 +18,7 @@
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
__version__ = "0.13.0"
__version__ = "0.14.0"

__author__ = "Carmen Bianca Bakker"
__email__ = "carmenbianca@fsfe.org"
Expand Down

0 comments on commit 69eebf8

Please sign in to comment.