Skip to content
This repository has been archived by the owner on May 3, 2020. It is now read-only.

Commit

Permalink
Merge b40e03a into 05f29b0
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuncar committed Sep 23, 2015
2 parents 05f29b0 + b40e03a commit 3a476a4
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 11 deletions.
16 changes: 16 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@
Changes
=======

Version 0.1.2 (release 2015-09-23)

- Removes dependencies to invenio.testsuite and replaces them with
invenio_testing.
- Removes dependencies to invenio.utils and replaces them with
invenio_utils.
- Removes dependencies to invenio.ext and replaces them with
invenio_ext.
- Removes calls to PluginManager consider_setuptools_entrypoints()
removed in PyTest 2.8.0.
- Runs the sql statement which actually changes the engine from MyISAM
to InnoDB.
- Upgrades pinned alembic version to allow the usage of
`batch_alter_table` method.
- Adds missing `invenio_base` dependency.

Version 0.1.1 (release 2015-09-07)

- Replaces usage of invenio.config with flask current_app.config.
Expand Down
28 changes: 20 additions & 8 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=========================
Invenio-Upgrader v0.1.1
Invenio-Upgrader v0.1.2
=========================

Invenio-Upgrader v0.1.1 was released on September 7, 2015.
Invenio-Upgrader v0.1.2 was released on September 23, 2015.

About
-----
Expand All @@ -11,20 +11,32 @@ Upgrader engine for Invenio modules.

*This is an experimental developer preview release.*

What's new
----------

- Replaces usage of invenio.config with flask current_app.config.
Bug fixes
---------

- Removes dependencies to invenio.testsuite and replaces them with
invenio_testing.
- Removes dependencies to invenio.utils and replaces them with
invenio_utils.
- Removes dependencies to invenio.ext and replaces them with
invenio_ext.
- Removes calls to PluginManager consider_setuptools_entrypoints()
removed in PyTest 2.8.0.
- Runs the sql statement which actually changes the engine from MyISAM
to InnoDB.
- Upgrades pinned alembic version to allow the usage of
`batch_alter_table` method.
- Adds missing `invenio_base` dependency.

Installation
------------

$ pip install invenio-upgrader==0.1.1
$ pip install invenio-upgrader==0.1.2

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

http://invenio-upgrader.readthedocs.org/en/v0.1.1
http://invenio-upgrader.readthedocs.org/en/v0.1.2

Happy hacking and thanks for flying Invenio-Upgrader.

Expand Down
2 changes: 1 addition & 1 deletion invenio_upgrader/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
and parsed by ``setup.py``.
"""

__version__ = "0.1.2.dev20150907"
__version__ = "0.1.2"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def run_tests(self):
version=version,
description=__doc__,
long_description=readme + '\n\n' + history,
keywords='invenio TODO',
keywords='invenio upgrade alembic',
license='GPLv2',
author='CERN',
author_email='info@invenio-software.org',
Expand All @@ -112,7 +112,7 @@ def run_tests(self):
'Sphinx>=1.3',
'sphinx_rtd_theme>=0.1.7'
],
'tests': test_requirements
'tests': test_requirements,
},
classifiers=[
'Environment :: Web Environment',
Expand Down

0 comments on commit 3a476a4

Please sign in to comment.