Skip to content

Commit 8a39b9b

Browse files
committed
Release 1.1.0
1 parent 0447ab4 commit 8a39b9b

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.1.0
2+
-----
3+
4+
:Date: 2018-10-31
5+
6+
* support semver prefixed with ``v``, like ``v2.0.5`` (https://github.com/humitos/sphinx-version-warning/pull/16)
7+
18
1.0.2
29
-----
310

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,16 @@ Releasing
123123
#. Increment the version in ``versionwarning/__init__.py``
124124
#. Increment the version in ``package.json``
125125
#. Update the ``CHANGELOG.rst``
126+
#. Update ``npm``::
127+
128+
$ npm update
129+
126130
#. Compile assets::
127131

128132
$ npm install
129133
$ ./node_modules/.bin/webpack
130134

135+
#. Commit the changes: ``git commit -m "Release $NEW_VERSION"``
131136
#. Tag the release in git: ``git tag $NEW_VERSION``
132137
#. Push the tag to GitHub: ``git push --tags origin``
133138
#. Upload the package to PyPI::

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "sphinx-version-warning",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"dependencies": {
55
"semver": "^5.6.0",
6-
"webpack": "^4.22.0",
6+
"webpack": "^4.23.1",
77
"webpack-cli": "^3.1.2"
88
}
99
}

versionwarning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22
name = 'versionwarning'
3-
version = '1.0.2'
3+
version = '1.1.0'

versionwarning/_static/js/versionwarning.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)