Skip to content

Commit 49b7ee8

Browse files
authored
Fix bumpver issue (#9181)
* Fix bumpver issue The setup.cfg pattern wasn't matching with the additional quotes on the pattern. Bump to current 8.0.1 version as well. A similar fix was hotfixed on main for readthedocs-corproate. * Two patterns are required it seems
1 parent aefe3ff commit 49b7ee8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = readthedocs
3-
version = 7.4.2
3+
version = 8.0.1
44
license = MIT
55
description = Read the Docs builds and hosts documentation
66
author = Read the Docs, Inc
@@ -38,7 +38,8 @@ push = False
3838

3939
[bumpver:file_patterns]
4040
setup.cfg =
41-
version = "{version}"
41+
version = {version}
42+
current_version = "{version}"
4243
package.json =
4344
"version": "{version}",
4445
docs/conf.py =

0 commit comments

Comments
 (0)