Skip to content

Commit fb065e4

Browse files
authored
Merge pull request #1204 from readthedocs/agj/release-10rc1
Changes for release 1.0rc1
2 parents f0edcba + 3f75a24 commit fb065e4

File tree

6 files changed

+39
-21
lines changed

6 files changed

+39
-21
lines changed

docs/changelog.rst

Lines changed: 33 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Changelog
55
Development version (|development_version|)
66
===========================================
77

8-
.. |development_version| replace:: 1.0.0alpha1
8+
.. |development_version| replace:: 1.0.0rc1
99

1010
Incompatible Changes
1111
--------------------
@@ -16,27 +16,45 @@ Incompatible Changes
1616
Deprecated
1717
----------
1818

19-
* Support for sphinx's html4 writer is deprecated and will be removed in version 2.0 (#1091)
19+
* Support for Sphinx's HTML4 writer is deprecated and will be removed in version 2.0 (#1091)
20+
21+
Features
22+
--------
23+
24+
* Add support for Sphinx 4.x (#1123)
25+
* Add support for Docutils 0.17 (#1185 and #1199)
26+
* Fixed logo scaling on IE11 (#1183)
27+
* Added support for logos as URLs (#1171)
28+
* Align top and side navigation background colors on mobile (#1132)
29+
* Added support for deep toc levels (#1089)
30+
31+
A number of accessibility features were added in this release:
32+
33+
* Allow keyboard to toggle menu expansion (#1167)
34+
* Allow keyboard to activate permalink (#1162)
35+
* Show keyboard focus on buttons (#1161)
36+
* Maintain aria-expanded along with .current in menu (#1151)
37+
* Respect tab order for prev/next buttons (#1051)
38+
39+
Fixes
40+
-----
41+
42+
* Updated Google analytics integration (#1129)
43+
* Add classifier separation on Sphinx 2+ HTML4 writer (#1192)
44+
* Added missing space char in footer (#1188)
45+
* Fix navigation right padding on level2+ elements (#1068)
46+
* Fix navigation expansion button sizes (#1067)
47+
* Wrap inline literals (#1050)
48+
* Fix aria labels (#1056)
49+
* Don't toggle navigation terminal nodes (#1049)
2050

2151
Other Changes
2252
-------------
2353

2454
* Update npm development dependencies (#1096)
2555
* Don't require npm to build from source (#1039)
2656
* Use regular toctree instead of toc for singlehtml builder (#507)
27-
* Templates: Cleanup Whitespace (#1060)
28-
29-
Fixes
30-
-----
31-
32-
* Javascript: Add support for deep toc levels (#1089)
33-
* Use Proper Sass Syntax (#1069)
34-
* Nav: Fix right padding on level2+ (#1068)
35-
* Fix Nav Buttons Size (#1067)
36-
* Fix: wrap inline literals (#1050)
37-
* Fix aria label (#1056)
38-
* Respect tab order for prev/next buttons (#1051)
39-
* Nav: Don't toggle terminal nodes (#1049)
57+
* Cleanup whitespace in templates (#1060)
4058

4159
v0.5.2
4260
======

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sphinx_rtd_theme",
33
"main": "js/theme.js",
4-
"version": "1.0.0alpha1",
4+
"version": "1.0.0rc1",
55
"scripts": {
66
"dev": "webpack-dev-server --open --config webpack.dev.js",
77
"build": "webpack --config webpack.prod.js",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0alpha1
2+
current_version = 1.0.0rc1
33
commit = false
44
tag = false
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<dev>\d+))?

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def run(self):
8787

8888
setup(
8989
name='sphinx_rtd_theme',
90-
version='1.0.0alpha1',
90+
version='1.0.0rc1',
9191
url='https://github.com/readthedocs/sphinx_rtd_theme',
9292
license='MIT',
9393
author='Dave Snider, Read the Docs, Inc. & contributors',

sphinx_rtd_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from sphinx.util.logging import getLogger
1313

1414

15-
__version__ = '1.0.0alpha1'
15+
__version__ = '1.0.0rc1'
1616
__version_full__ = __version__
1717

1818
logger = getLogger(__name__)

0 commit comments

Comments
 (0)