Skip to content

Commit

Permalink
Bump version: 1.0.0 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carmenbianca committed Dec 1, 2022
1 parent 1d6cf6a commit 18cc417
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.1.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{releasenumber}
{major}.{minor}.{patch}

[bumpversion:part:release]
values =
values =
a
b
rc
Expand All @@ -24,6 +24,5 @@ replace = version = "{new_version}"
[bumpversion:file:docs/conf.py]

[bumpversion:file:README.md]

search = rev: v{current_version}
replace = rev: v{new_version}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
```yaml
repos:
- repo: https://github.com/fsfe/reuse-tool
rev: v1.0.0
rev: v1.1.0
hooks:
- id: reuse
```
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# The full version, including alpha/beta/rc tags.
release = get_distribution("reuse").version
except DistributionNotFound:
release = "1.0.0"
release = "1.1.0"
# The short X.Y.Z version.
version = ".".join(release.split(".")[:3])

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[tool.poetry]
name = "reuse"
version = "1.0.0"
version = "1.1.0"
description = "reuse is a tool for compliance with the REUSE recommendations."
authors = [
"Free Software Foundation Europe <contact@fsfe.org>",
Expand Down
2 changes: 1 addition & 1 deletion src/reuse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
__version__ = "1.0.0"
__version__ = "1.1.0"

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

0 comments on commit 18cc417

Please sign in to comment.