Compare commits

...

2 Commits

Author SHA1 Message Date
Ben Lopatin 1cf6465f8c Fix missing comma(????) 2019-12-04 19:30:20 -05:00
Ben Lopatin 855d6412ef Version bump 2019-12-04 18:34:34 -05:00
4 changed files with 14 additions and 4 deletions
+10
View File
@@ -3,6 +3,16 @@
Release history
===============
1.0.0 (2019-12-04)
------------------
This is a *potentially* breaking change if you're working with a significantly older Discourse deployment.
It's not entirely clear if header based authentication has been available since day 1 or was introduced in
a recent version (you should be fine! ... but caveat emptor).
- Adds new invitation methods
- Hard switch from query param based authorization to header-based authorization
0.9.0
-----
+2 -2
View File
@@ -51,9 +51,9 @@ copyright = u'2014, Marc Sibson'
# built documents.
#
# The short X.Y version.
version = '0.9'
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '0.9.0'
release = '1.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+1 -1
View File
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "0.9.0"
__version__ = "1.0.0"
from pydiscourse.client import DiscourseClient
+1 -1
View File
@@ -34,7 +34,7 @@ setup(
]
},
classifiers=[
"Development Status :: 5 - Production/Stable"
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",