Skip to content

Commit

Permalink
Merge pull request readthedocs#649 from rtfd/version-0.4.0
Browse files Browse the repository at this point in the history
Version 0.4.0 updates
  • Loading branch information
davidfischer authored Jun 6, 2018
2 parents 53e2a78 + 69fafa2 commit 5a16288
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
.coverage
*.DS_Store
*.sass-cache
*.map
.ropeproject/
.ruby-version
dist/
bower_components/
node_modules
npm-debug.log
package-lock.json
sphinx_rtd_theme/static/fonts/Lato/
sphinx_rtd_theme/static/fonts/RobotoSlab/
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sphinx-rtd-theme",
"version": "0.3.1",
"version": "0.4.0",
"homepage": "https://github.com/rtfd/sphinx_rtd_theme",
"authors": [
"Dave Snider, Read the Docs, Inc. & contributors <[email protected]>"
Expand Down
6 changes: 5 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
Changelog
*********

Master
v0.4.0
======

This version made some changes to how JS and CSS were included
when the theme is used on Read the Docs.


New Features
-------------

Expand Down
3 changes: 2 additions & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ Releasing the Theme
When you release a new version,
you should do the following:

#. Bump the version in ``sphinx_rtd_theme/__init__.py`` --
#. Bump the version in ``sphinx_rtd_theme/__init__.py``, ``bower.json`` and ``package.json`` --
we try to follow `semver <http://semver.org/>`_, so be careful with breaking changes.
#. Update the changelog (``docs/changelog.rst``) with the version information.
#. Run a ``grunt build`` to rebuild all the theme assets.
#. Commit that change.
#. Tag the release in git: ``git tag $NEW_VERSION``.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sphinx_rtd_theme",
"version": "0.3.1",
"version": "0.4.0",
"private": true,
"devDependencies": {
"bower": "^1.8.4",
Expand Down
3 changes: 2 additions & 1 deletion sass/_theme_font_local.sass
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@
font-family: 'Roboto Slab'
font-style: normal
font-weight: 700
src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(../fonts/RobotoSlab-Bold.ttf) format('truetype')
src: url('../fonts/RobotoSlab/roboto-slab-v7-bold.eot')
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')
2 changes: 1 addition & 1 deletion sphinx_rtd_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
from os import path

__version__ = '0.3.1'
__version__ = '0.4.0'
__version_full__ = __version__


Expand Down
6 changes: 4 additions & 2 deletions sphinx_rtd_theme/static/css/theme.css

Large diffs are not rendered by default.

Binary file removed sphinx_rtd_theme/static/fonts/Lato-Bold.ttf
Binary file not shown.
Binary file removed sphinx_rtd_theme/static/fonts/Lato-BoldItalic.ttf
Binary file not shown.
Binary file removed sphinx_rtd_theme/static/fonts/Lato-Italic.ttf
Binary file not shown.
Binary file removed sphinx_rtd_theme/static/fonts/Lato-Regular.ttf
Binary file not shown.
Binary file removed sphinx_rtd_theme/static/fonts/RobotoSlab-Bold.ttf
Binary file not shown.
Binary file not shown.
4 changes: 3 additions & 1 deletion sphinx_rtd_theme/static/js/theme.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5a16288

Please sign in to comment.