Merge branch 'master' into Blendify/fix-math-link-icon

This commit is contained in:
Anthony 2021-08-12 10:00:12 -06:00 committed by GitHub
commit bd19ad5ce9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 11 deletions

View File

@ -2,11 +2,10 @@
Changelog
*********
master
======
Development version (|development_version|)
===========================================
v1.0.0
======
.. |development_version| replace:: 1.0.0alpha1
Incompatible Changes
--------------------

View File

@ -197,4 +197,8 @@ To release a new version of the theme, core team will take the following steps:
$ python setup.py sdist bdist_wheel
$ twine upload --sign --identity security@readthedocs.org dist/*
#. Finally, open a new pull request updating the development release version to
the next patch by running ``bump2version patch``. Open a pull request with
this change.
.. _PEP440: https://www.python.org/dev/peps/pep-0440/

4
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "sphinx_rtd_theme",
"version": "0.5.2",
"version": "1.0.0alpha1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -2809,7 +2809,7 @@
}
},
"fresh": {
"version": "0.5.2",
"version": "1.0.0alpha1",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
"dev": true

View File

@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
"version": "0.5.2",
"version": "1.0.0alpha1",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.2
current_version = 1.0.0alpha1
commit = false
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?
@ -53,4 +53,6 @@ replace = "version": "{new_version}",
search = "version": "{current_version}",
replace = "version": "{new_version}",
[bumpversion:file:docs/conf.py]
[bumpversion:file:docs/changelog.rst]
search = .. |development_version| replace:: {current_version}
replace = .. |development_version| replace:: {new_version}

View File

@ -87,7 +87,7 @@ class TransifexCommand(distutils.cmd.Command):
setup(
name='sphinx_rtd_theme',
version='0.5.2',
version='1.0.0alpha1',
url='https://github.com/readthedocs/sphinx_rtd_theme',
license='MIT',
author='Dave Snider, Read the Docs, Inc. & contributors',

View File

@ -12,7 +12,7 @@ from sphinx.locale import _
from sphinx.util.logging import getLogger
__version__ = '0.5.2'
__version__ = '1.0.0alpha1'
__version_full__ = __version__
logger = getLogger(__name__)