File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1010sys .path .append (os .path .abspath ('./demo/' ))
1111
1212import 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
1315from sphinx .locale import _
1416
1517project = u'Read the Docs Sphinx Theme'
1618slug = 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
1921author = u'Dave Snider, Read the Docs, Inc. & contributors'
2022copyright = author
2123language = 'en'
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.5.1
2+ current_version = 0.5.2
33commit = false
44tag = false
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
Original file line number Diff line number Diff line change 1212from sphinx .util .logging import getLogger
1313
1414
15- __version__ = '0.5.1 '
15+ __version__ = '0.5.2 '
1616__version_full__ = __version__
1717
1818logger = getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments