mirror of
https://github.com/readthedocs/sphinx_rtd_theme.git
synced 2025-02-25 18:55:21 -06:00
Start off with 0.4.3alpha1
We use a 1-based indexing for dev part as `rc0` sounds funny. This was also a test commit of the change.
This commit is contained in:
@@ -12,8 +12,8 @@ from sphinx.locale import _
|
||||
|
||||
project = u'Read the Docs Sphinx Theme'
|
||||
slug = re.sub(r'\W+', '-', project.lower())
|
||||
version = '0.4.3alpha0'
|
||||
release = '0.4.3alpha0'
|
||||
version = '0.4.3alpha1'
|
||||
release = '0.4.3alpha1'
|
||||
author = u'Dave Snider, Read the Docs, Inc. & contributors'
|
||||
copyright = author
|
||||
language = 'en'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "sphinx_rtd_theme",
|
||||
"main": "js/theme.js",
|
||||
"version": "0.4.3alpha0",
|
||||
"version": "0.4.3alpha1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "webpack-dev-server --open --config webpack.dev.js",
|
||||
|
||||
18
setup.cfg
18
setup.cfg
@@ -1,3 +1,12 @@
|
||||
[bumpversion]
|
||||
current_version = 0.4.3alpha1
|
||||
commit = false
|
||||
tag = false
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
|
||||
serialize =
|
||||
{major}.{minor}.{patch}{release}{dev}
|
||||
{major}.{minor}.{patch}
|
||||
|
||||
[bdist_wheel]
|
||||
universal = 1
|
||||
|
||||
@@ -21,15 +30,6 @@ output_dir = sphinx_rtd_theme/locale/
|
||||
domain = sphinx
|
||||
directory = sphinx_rtd_theme/locale/
|
||||
|
||||
[bumpversion]
|
||||
current_version = 0.4.3alpha0
|
||||
commit = false
|
||||
tag = false
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
|
||||
serialize =
|
||||
{major}.{minor}.{patch}{release}{dev}
|
||||
{major}.{minor}.{patch}
|
||||
|
||||
[bumpversion:part:release]
|
||||
optional_value = release
|
||||
first_value = alpha
|
||||
|
||||
2
setup.py
2
setup.py
@@ -53,7 +53,7 @@ class TransifexCommand(distutils.cmd.Command):
|
||||
|
||||
setup(
|
||||
name='sphinx_rtd_theme',
|
||||
version='0.4.3alpha0',
|
||||
version='0.4.3alpha1',
|
||||
url='https://github.com/rtfd/sphinx_rtd_theme/',
|
||||
license='MIT',
|
||||
author='Dave Snider, Read the Docs, Inc. & contributors',
|
||||
|
||||
@@ -9,7 +9,7 @@ from os import path
|
||||
import sphinx
|
||||
|
||||
|
||||
__version__ = '0.4.3alpha0'
|
||||
__version__ = '0.4.3alpha1'
|
||||
__version_full__ = __version__
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user