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:
Anthony Johnson
2020-05-06 14:53:43 -06:00
parent 512ad422d1
commit b4769ec0ae
5 changed files with 14 additions and 14 deletions

View File

@@ -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'

View File

@@ -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",

View File

@@ -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

View File

@@ -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',

View File

@@ -9,7 +9,7 @@ from os import path
import sphinx
__version__ = '0.4.3alpha0'
__version__ = '0.4.3alpha1'
__version_full__ = __version__