Skip to content

Commit 86f057b

Browse files
committed
Bump version: 1.1.1 → 1.1.2
1 parent cbfb739 commit 86f057b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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 = 1.1.1
2+
current_version = 1.1.2
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*)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
235235
```yaml
236236
repos:
237237
- repo: https://github.com/fsfe/reuse-tool
238-
rev: v1.1.1
238+
rev: v1.1.2
239239
hooks:
240240
- id: reuse
241241
```

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 = "1.1.1"
79+
release = "1.1.2"
8080
# The short X.Y.Z version.
8181
version = ".".join(release.split(".")[:3])
8282

pyproject.toml

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

77
[tool.poetry]
88
name = "reuse"
9-
version = "1.1.1"
9+
version = "1.1.2"
1010
description = "reuse is a tool for compliance with the REUSE recommendations."
1111
authors = [
1212
"Free Software Foundation Europe <contact@fsfe.org>",

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__ = "1.1.1"
21+
__version__ = "1.1.2"
2222

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

0 commit comments

Comments
 (0)