Skip to content

Commit

Permalink
release: v1.0.0b1
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Kuncar <jiri.kuncar@cern.ch>
  • Loading branch information
jirikuncar committed Aug 11, 2016
1 parent 6c228ad commit 525ba52
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Expand Up @@ -24,8 +24,8 @@
Changes
=======

Version 1.0.0a10 (released 2016-07-04)
--------------------------------------
Version 1.0.0b1 (released 2016-08-11)
-------------------------------------

- Initial public release.
- Versioning support using SQLAlchemy-Continuum.
14 changes: 7 additions & 7 deletions RELEASE-NOTES.rst
@@ -1,8 +1,8 @@
======================
Invenio-DB v1.0.0a10
======================
=====================
Invenio-DB v1.0.0b1
=====================

Invenio-DB v1.0.0a10 was released on July 4, 2016.
Invenio-DB v1.0.0b1 was released on August 11, 2016.

About
-----
Expand All @@ -20,18 +20,18 @@ What's new
Installation
------------

$ pip install invenio-db==1.0.0a10
$ pip install invenio-db==1.0.0b1

Documentation
-------------

http://pythonhosted.org/invenio-db/
https://pythonhosted.org/invenio-db/

Happy hacking and thanks for flying Invenio-DB.

| Invenio Development Team
| Email: info@inveniosoftware.org
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| Twitter: https://twitter.com/inveniosoftware
| GitHub: https://github.com/inveniosoftware/invenio-db
| URL: http://inveniosoftware.org
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -138,8 +138,8 @@
'github_banner': True,
'show_powered_by': False,
'extra_nav_links': {
'invenio-db@GitHub': 'http://github.com/inveniosoftware/invenio-db',
'invenio-db@PyPI': 'http://pypi.python.org/pypi/invenio-db/',
'invenio-db@GitHub': 'https://github.com/inveniosoftware/invenio-db',
'invenio-db@PyPI': 'https://pypi.python.org/pypi/invenio-db/',
}
}

Expand Down
4 changes: 2 additions & 2 deletions invenio_db/shared.py
Expand Up @@ -86,7 +86,7 @@ def do_sqlite_connect(dbapi_connection, connection_record):
"""Ensure SQLite checks foreign key constraints.
For further details see "Foreign key support" sections on
http://docs.sqlalchemy.org/en/latest/dialects/sqlite.html
https://docs.sqlalchemy.org/en/latest/dialects/sqlite.html
"""
# Enable foreign key constraint checking
cursor = dbapi_connection.cursor()
Expand All @@ -98,7 +98,7 @@ def do_sqlite_begin(dbapi_connection):
"""Ensure SQLite transaction are started properly.
For further details see "Foreign key support" sections on
http://docs.sqlalchemy.org/en/rel_1_0/dialects/sqlite.html#pysqlite-serializable # noqa
https://docs.sqlalchemy.org/en/rel_1_0/dialects/sqlite.html#pysqlite-serializable # noqa
"""
# emit our own BEGIN
dbapi_connection.execute("BEGIN")
Expand Down
2 changes: 1 addition & 1 deletion invenio_db/version.py
Expand Up @@ -30,4 +30,4 @@

from __future__ import absolute_import, print_function

__version__ = "1.0.0b1.dev20160809"
__version__ = "1.0.0b1"

0 comments on commit 525ba52

Please sign in to comment.