File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.0 .0
2
+ current_version = 1.1 .0
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*)
6
- serialize =
6
+ serialize =
7
7
{major}.{minor}.{patch}{release}{releasenumber}
8
8
{major}.{minor}.{patch}
9
9
10
10
[bumpversion:part:release]
11
- values =
11
+ values =
12
12
a
13
13
b
14
14
rc
@@ -24,6 +24,5 @@ replace = version = "{new_version}"
24
24
[bumpversion:file:docs/conf.py]
25
25
26
26
[bumpversion:file:README.md]
27
-
28
27
search = rev: v{current_version}
29
28
replace = rev: v{new_version}
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ Git. This uses [pre-commit](https://pre-commit.com/). Once you
235
235
``` yaml
236
236
repos :
237
237
- repo : https://github.com/fsfe/reuse-tool
238
- rev : v1.0 .0
238
+ rev : v1.1 .0
239
239
hooks :
240
240
- id : reuse
241
241
` ` `
Original file line number Diff line number Diff line change 76
76
# The full version, including alpha/beta/rc tags.
77
77
release = get_distribution ("reuse" ).version
78
78
except DistributionNotFound :
79
- release = "1.0 .0"
79
+ release = "1.1 .0"
80
80
# The short X.Y.Z version.
81
81
version = "." .join (release .split ("." )[:3 ])
82
82
Original file line number Diff line number Diff line change 6
6
7
7
[tool .poetry ]
8
8
name = " reuse"
9
- version = " 1.0 .0"
9
+ version = " 1.1 .0"
10
10
description = " reuse is a tool for compliance with the REUSE recommendations."
11
11
authors = [
12
12
" Free Software Foundation Europe <contact@fsfe.org>" ,
Original file line number Diff line number Diff line change 18
18
__version__ = get_distribution (__name__ ).version
19
19
except DistributionNotFound :
20
20
# package is not installed
21
- __version__ = "1.0 .0"
21
+ __version__ = "1.1 .0"
22
22
23
23
__author__ = "Carmen Bianca Bakker"
24
24
__email__ = "carmenbianca@fsfe.org"
You can’t perform that action at this time.
0 commit comments