Skip to content

Commit 2f12da3

Browse files
authored
Add Missing version bumps for 0.5.2 (#1120)
Found while looking into #1117
1 parent 9df65f1 commit 2f12da3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

docs/conf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@
1010
sys.path.append(os.path.abspath('./demo/'))
1111

1212
import sphinx_rtd_theme
13+
from sphinx_rtd_theme import __version__ as theme_version
14+
from sphinx_rtd_theme import __version_full__ as theme_version_full
1315
from sphinx.locale import _
1416

1517
project = u'Read the Docs Sphinx Theme'
1618
slug = re.sub(r'\W+', '-', project.lower())
17-
version = '0.5.1'
18-
release = '0.5.1'
19+
version = theme_version
20+
release = theme_version_full
1921
author = u'Dave Snider, Read the Docs, Inc. & contributors'
2022
copyright = author
2123
language = 'en'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.1
2+
current_version = 0.5.2
33
commit = false
44
tag = false
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?

sphinx_rtd_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sphinx.util.logging import getLogger
1313

1414

15-
__version__ = '0.5.1'
15+
__version__ = '0.5.2'
1616
__version_full__ = __version__
1717

1818
logger = getLogger(__name__)

0 commit comments

Comments
 (0)