--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CHANGES Wed Jan 21 10:24:42 2015 +0100
@@ -0,0 +1,33 @@
+0.2.0 (next)
+------------
+
+- Create a documentation (:issue:`4849313`)
+- Fix cors 'origin' parameter passing (:issue:`4783343`)
+- Fix configuration loading when 'cubicweb.includes' is not set (:issue:`4849314`)
+- Move auth-related code to :mod:`pyramid_cubicweb.auth`.
+- Add profiling tools
+- Cleanups
+
+0.1.3 (2014-12-08)
+------------------
+
+- Fix cookies max_age (:issue:`4731764`)
+
+0.1.2 (2014-11-15)
+------------------
+
+- Fix excessive rollbacks on HTTPSuccessful or HTTPRedirection (:issue:`4566482`)
+
+0.1.1 (2014-11-02)
+------------------
+
+- Have `CWUser.last_login_time` properly updated (:issue:`4549891`)
+
+0.1.0 (2014-10-23)
+------------------
+
+Initial release
+
+- Provides a pyramid-based authentication and session management for a cubicweb
+ instance.
+- Run a cubicweb instance as a pyramid application
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/changes.rst Wed Jan 21 10:24:42 2015 +0100
@@ -0,0 +1,4 @@
+Pyramid Cubicweb Changes
+========================
+
+.. include:: ../CHANGES
--- a/docs/conf.py Fri Jan 16 22:50:05 2015 +0100
+++ b/docs/conf.py Wed Jan 21 10:24:42 2015 +0100
@@ -30,6 +30,7 @@
'sphinx.ext.intersphinx',
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
+ 'sphinx.ext.extlinks',
]
# Add any paths that contain templates here, relative to this directory.
@@ -273,6 +274,9 @@
'http://docs.cubicweb.org/': None
}
+extlinks = {'issue': ('https://www.cubicweb.org/ticket/%s',
+ 'issue ')}
+
def setup(app):
app.add_object_type('confval', 'confval',
--- a/docs/index.rst Fri Jan 16 22:50:05 2015 +0100
+++ b/docs/index.rst Wed Jan 21 10:24:42 2015 +0100
@@ -34,6 +34,14 @@
api
+Change History
+==============
+
+.. toctree::
+ :maxdepth: 1
+
+ changes
+
Indices and tables
==================