Skip to content

Commit 5a16288

Browse files
authored
Merge pull request #649 from rtfd/version-0.4.0
Version 0.4.0 updates
2 parents 53e2a78 + 69fafa2 commit 5a16288

File tree

15 files changed

+22
-9
lines changed

15 files changed

+22
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
.coverage
77
*.DS_Store
88
*.sass-cache
9+
*.map
910
.ropeproject/
1011
.ruby-version
1112
dist/
1213
bower_components/
1314
node_modules
1415
npm-debug.log
1516
package-lock.json
17+
sphinx_rtd_theme/static/fonts/Lato/
18+
sphinx_rtd_theme/static/fonts/RobotoSlab/

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sphinx-rtd-theme",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"homepage": "https://github.com/rtfd/sphinx_rtd_theme",
55
"authors": [
66
"Dave Snider, Read the Docs, Inc. & contributors <[email protected]>"

docs/changelog.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
Changelog
44
*********
55

6-
Master
6+
v0.4.0
77
======
88

9+
This version made some changes to how JS and CSS were included
10+
when the theme is used on Read the Docs.
11+
12+
913
New Features
1014
-------------
1115

docs/contributing.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ Releasing the Theme
7373
When you release a new version,
7474
you should do the following:
7575

76-
#. Bump the version in ``sphinx_rtd_theme/__init__.py`` --
76+
#. Bump the version in ``sphinx_rtd_theme/__init__.py``, ``bower.json`` and ``package.json`` --
7777
we try to follow `semver <http://semver.org/>`_, so be careful with breaking changes.
78+
#. Update the changelog (``docs/changelog.rst``) with the version information.
7879
#. Run a ``grunt build`` to rebuild all the theme assets.
7980
#. Commit that change.
8081
#. Tag the release in git: ``git tag $NEW_VERSION``.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sphinx_rtd_theme",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"private": true,
55
"devDependencies": {
66
"bower": "^1.8.4",

sass/_theme_font_local.sass

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@
3838
font-family: 'Roboto Slab'
3939
font-style: normal
4040
font-weight: 700
41-
src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype')
41+
src: url('../fonts/RobotoSlab/roboto-slab-v7-bold.eot')
42+
src: url('../fonts/RobotoSlab/roboto-slab-v7-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/RobotoSlab/roboto-slab-v7-bold.woff2') format('woff2'), url('../fonts/RobotoSlab/roboto-slab-v7-bold.woff') format('woff'), url('../fonts/RobotoSlab/roboto-slab-v7-bold.ttf') format('truetype')

sphinx_rtd_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66
from os import path
77

8-
__version__ = '0.3.1'
8+
__version__ = '0.4.0'
99
__version_full__ = __version__
1010

1111

sphinx_rtd_theme/static/css/theme.css

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-641 KB
Binary file not shown.
-682 KB
Binary file not shown.

0 commit comments

Comments
 (0)