Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Holscher <eric@ericholscher.com>2021-04-05 19:14:10 +0300
committerEric Holscher <eric@ericholscher.com>2021-04-05 19:30:14 +0300
commitb07560bf97dad3a4266f6145bd4b662ac708ab00 (patch)
tree2f75f4f81bbdd1fe082ed42dff546bcef0b2da62
parent9ca1f541ece586f1fc61fc934de4558067368881 (diff)
Release 0.5.20.5.2
Include a changelog and bump versions
-rw-r--r--docs/changelog.rst10
-rw-r--r--package-lock.json2
-rw-r--r--package.json2
-rw-r--r--setup.py4
4 files changed, 14 insertions, 4 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 4a956fd..2a6d5ff 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -5,6 +5,16 @@ Changelog
master
======
+v0.5.2
+======
+
+:Date: April 5, 2021
+
+.. note:: This commit will not be in ``master``, but was branched directly off ``0.5.1`` to minimize issues.
+ The next full release will contain all PR's previously merged.
+
+* Depend on docutils < 0.17 (#1113)
+
v0.5.1
======
diff --git a/package-lock.json b/package-lock.json
index be95f32..61c4d83 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "sphinx_rtd_theme",
- "version": "0.5.1",
+ "version": "0.5.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 9ea36e7..4bfffb7 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "sphinx_rtd_theme",
"main": "js/theme.js",
- "version": "0.5.1",
+ "version": "0.5.2",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
diff --git a/setup.py b/setup.py
index 67c487c..f9d54ad 100644
--- a/setup.py
+++ b/setup.py
@@ -85,7 +85,7 @@ class TransifexCommand(distutils.cmd.Command):
setup(
name='sphinx_rtd_theme',
- version='0.5.1',
+ version='0.5.2',
url='https://github.com/readthedocs/sphinx_rtd_theme',
license='MIT',
author='Dave Snider, Read the Docs, Inc. & contributors',
@@ -115,7 +115,7 @@ setup(
]
},
install_requires=[
- 'sphinx'
+ 'sphinx',
'docutils<0.17', # https://github.com/sphinx-doc/sphinx/issues/9001
],
tests_require=[