File tree 6 files changed +11
-7
lines changed
6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 3.0.0
2
+ current_version = 3.0.1
3
3
commit = True
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>(a|b|rc)?)(?P<releasenumber>\d*)
Original file line number Diff line number Diff line change @@ -50,14 +50,18 @@ CLI command and its behaviour. There are no guarantees of stability for the
50
50
51
51
### Fixed
52
52
53
+ ### Security
54
+
55
+ ## 3.0.1 - 2024-01-19
56
+
57
+ ### Fixed
58
+
53
59
- ` .qrc ` and ` .ui ` now have the HTML comment style instead of being marked
54
60
uncommentable. (#896 )
55
61
- This reverts behaviour introduced in v3.0.0: the contents of uncommentable
56
62
files are scanned for REUSE information again. The contents of binary files
57
63
are not. (#896 )
58
64
59
- ### Security
60
-
61
65
## 3.0.0 - 2024-01-17
62
66
63
67
This release contains a lot of small improvements and changes without anything
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
246
246
``` yaml
247
247
repos :
248
248
- repo : https://github.com/fsfe/reuse-tool
249
- rev : v3.0.0
249
+ rev : v3.0.1
250
250
hooks :
251
251
- id : reuse
252
252
` ` `
Original file line number Diff line number Diff line change 75
75
# The full version, including alpha/beta/rc tags.
76
76
release = get_version ("reuse" )
77
77
except PackageNotFoundError :
78
- release = "3.0.0 "
78
+ release = "3.0.1 "
79
79
80
80
# The short X.Y.Z version.
81
81
version = "." .join (release .split ("." )[:3 ])
Original file line number Diff line number Diff line change 7
7
8
8
[tool .poetry ]
9
9
name = " reuse"
10
- version = " 3.0.0 "
10
+ version = " 3.0.1 "
11
11
description = " reuse is a tool for compliance with the REUSE recommendations."
12
12
authors = [
13
13
" Free Software Foundation Europe <contact@fsfe.org>" ,
Original file line number Diff line number Diff line change 31
31
__version__ = version ("reuse" )
32
32
except PackageNotFoundError :
33
33
# package is not installed
34
- __version__ = "3.0.0 "
34
+ __version__ = "3.0.1 "
35
35
36
36
__author__ = "Carmen Bianca Bakker"
37
37
__email__ = "carmenbianca@fsfe.org"
You can’t perform that action at this time.
0 commit comments