Skip to content

Commit

Permalink
release: v1.0.0a1
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Holm Nielsen <lars.holm.nielsen@cern.ch>
  • Loading branch information
lnielsen committed Jun 11, 2016
1 parent 1bbb04f commit d295763
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 deletions.
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,14 @@ script:

after_success:
- coveralls

deploy:
provider: pypi
user: lnielsen
password:
secure: NKkEhbA1PBtNvbGffv+qz3h+A26TZE2joC+w6LqJoeLPrZ/jsZX7wacx5+1vjWdcQrxZ6oounZlWmu5JtWYRl+RT2VuRAATheVhfAgJ+HBjtR5VsICv0DN1A26UwNDZyJCpglSuo90hM5d9yRLGYJBDpUbZxshopQnEQv9xtLL2Mtr0EqAwUdGdpJtfQcRbS+DEMArK0sq7DpWxVBIMdrnRynGoDmRTiXR8KfAz07CJcyUEYA+3j1QfXFffqOAzhv21dlOQS9RwVWL0Phs32AI5gWcW2sjoOT64Ey8rpfzXXln6yh5YXgp6+ME5313AEKQq/NLYZY6PXEJJYHKH/PqrpfkGGlahlXuSQxE/hN6q5oV2iUrtk5UQPWRXLKXwCzw3PdyiHfjedvtSxfyEozsxLkPDBBuQnTAdInwwVYGG2fWPhxJiYptmRRRueGrrGYWHXLygfYiLD9C9hsbrzj9/TXFBwCiGnIr1a0SN5acU3JngtFv7Mly7PuPJSaRLwUvDjzT/HX+5/3jAevrsKLPETYcd3gG+S8B75C0wZC6Ga406KNLNxNpE7m8DEMFVanDZlHw5DOaL5dn/z+3uRP5KK3l4Rqg3Ml2ZBFCrFf4dRsle2SEGNbD1ZrVvCcg2MEhV0xW02u3AiKFyTqFe6CiXiAiOQkh13FTTa85wihS4=
distributions: "sdist bdist_wheel"
on:
tags: true
python: "2.7"
condition: $REQUIREMENTS = release
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
Changes
=======

Version 0.1.0 (released TBD)
Version 1.0.0a1 (released 2016-06-09)

- Initial public release.
2 changes: 0 additions & 2 deletions README.md

This file was deleted.

10 changes: 5 additions & 5 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=========================
Invenio-CSL-REST v0.1.0
=========================
===========================
Invenio-CSL-REST v1.0.0a1
===========================

Invenio-CSL-REST v0.1.0 was released on TBD, 2016.
Invenio-CSL-REST v1.0.0a1 was released on June 9th, 2016.

About
-----
Expand All @@ -19,7 +19,7 @@ What's new
Installation
------------

$ pip install invenio-csl-rest==0.1.0
$ pip install invenio-csl-rest==1.0.0a1

Documentation
-------------
Expand Down
2 changes: 0 additions & 2 deletions invenio_csl_rest/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
from werkzeug.utils import cached_property

from .version import __version__ as rest_api_version
from .views import blueprint


class _InvenioCSLRESTState(object):
Expand Down Expand Up @@ -72,7 +71,6 @@ def __init__(self, app=None):

def init_app(self, app):
"""Flask application initialization."""
app.register_blueprint(blueprint)
state = _InvenioCSLRESTState(app)
app.extensions['invenio-csl-rest'] = state
return state
Expand Down
2 changes: 1 addition & 1 deletion invenio_csl_rest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.1.0.dev20160511"
__version__ = "1.0.0a1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
]

install_requires = [
'invenio-rest>=1.0.0a7'
# 'citeproc-py-styles>=0.1.0',
'citeproc-py-styles>=0.1.0',
'invenio-rest>=1.0.0a9',
]

packages = find_packages()
Expand Down

0 comments on commit d295763

Please sign in to comment.