Skip to content

Commit 4d18332

Browse files
authored
Merge pull request #897 from carmenbianca/release-3.0.1
Release 3.0.1
2 parents 03c7960 + 2f31927 commit 4d18332

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.0.1
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*)

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,18 @@ CLI command and its behaviour. There are no guarantees of stability for the
5050

5151
### Fixed
5252

53+
### Security
54+
55+
## 3.0.1 - 2024-01-19
56+
57+
### Fixed
58+
5359
- `.qrc` and `.ui` now have the HTML comment style instead of being marked
5460
uncommentable. (#896)
5561
- This reverts behaviour introduced in v3.0.0: the contents of uncommentable
5662
files are scanned for REUSE information again. The contents of binary files
5763
are not. (#896)
5864

59-
### Security
60-
6165
## 3.0.0 - 2024-01-17
6266

6367
This release contains a lot of small improvements and changes without anything

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
246246
```yaml
247247
repos:
248248
- repo: https://github.com/fsfe/reuse-tool
249-
rev: v3.0.0
249+
rev: v3.0.1
250250
hooks:
251251
- id: reuse
252252
```

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# The full version, including alpha/beta/rc tags.
7676
release = get_version("reuse")
7777
except PackageNotFoundError:
78-
release = "3.0.0"
78+
release = "3.0.1"
7979

8080
# The short X.Y.Z version.
8181
version = ".".join(release.split(".")[:3])

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[tool.poetry]
99
name = "reuse"
10-
version = "3.0.0"
10+
version = "3.0.1"
1111
description = "reuse is a tool for compliance with the REUSE recommendations."
1212
authors = [
1313
"Free Software Foundation Europe <contact@fsfe.org>",

src/reuse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
__version__ = version("reuse")
3232
except PackageNotFoundError:
3333
# package is not installed
34-
__version__ = "3.0.0"
34+
__version__ = "3.0.1"
3535

3636
__author__ = "Carmen Bianca Bakker"
3737
__email__ = "carmenbianca@fsfe.org"

0 commit comments

Comments
 (0)