Skip to content

Commit b0fd725

Browse files
committed
Bump version: 0.14.0 → 1.0.0
1 parent e71302b commit b0fd725

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.14.0
2+
current_version = 1.0.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# The full version, including alpha/beta/rc tags.
7777
release = get_distribution("reuse").version
7878
except DistributionNotFound:
79-
release = "0.14.0"
79+
release = "1.0.0"
8080
# The short X.Y.Z version.
8181
version = ".".join(release.split(".")[:3])
8282

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
setup_requirements = ["setuptools_scm"]
4545

46-
fallback_version = "0.14.0"
46+
fallback_version = "1.0.0"
4747

4848

4949
def readme_md():

src/reuse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
__version__ = get_distribution(__name__).version
1919
except DistributionNotFound:
2020
# package is not installed
21-
__version__ = "0.14.0"
21+
__version__ = "1.0.0"
2222

2323
__author__ = "Carmen Bianca Bakker"
2424
__email__ = "carmenbianca@fsfe.org"

0 commit comments

Comments
 (0)