We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18ca64d commit c4e2f67Copy full SHA for c4e2f67
3 files changed
CHANGELOG.rst
@@ -1,3 +1,14 @@
1
+0.2.0
2
+-----
3
+
4
+:Date: 2018-07-30
5
6
+ * Use ``READTHEDOCS_PROJECT`` and ``READTHEDOCS_VERSION`` environment variables
7
8
+ * Remove ``versionwarning_enabled`` config since it wasn't used and it's not necessary
9
10
+ * Parse ``versionwarning_messages`` as reStructuredText (https://github.com/humitos/sphinx-version-warning/pull/7)
11
12
0.1.0
13
-----
14
package.json
@@ -1,6 +1,6 @@
{
"name": "sphinx-version-warning",
- "version": "0.1.0",
+ "version": "0.2.0",
"dependencies": {
"semver": "^5.5.0",
"webpack": "^4.16.3",
versionwarning/__init__.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
name = 'versionwarning'
-version = '0.1.0'
+version = '0.2.0'
def setup(app):
0 commit comments