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

Commit

Permalink
Flask-Registry v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Jun 27, 2014
1 parent 134c2b7 commit 0a248c3
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ python:
- "2.6"
- "2.7"
- "3.3"
# - "3.4"

install:
- pip install --upgrade pip --use-mirrors
Expand Down
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ Contributors
* Lars Holm Nielsen <lars.holm.nielsen@cern.ch>
* Jiri Kuncar <jiri.kuncar@cern.ch>
* Esteban J. G. Gabancho <esteban.jose.garcia.gabancho@cern.ch>
* Tibor Simko <tibor.simko@cern.ch>
* Tibor Simko <tibor.simko@cern.ch>
* Yoan Blanc <yoan@dosimple.ch>
15 changes: 15 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ Changelog
Here you can see the full list of changes between each Flask-Registry
release.

Version 0.2.0 (released 2014-06-27)
-----------------------------------
- ListRegistry now fuly behaves as a list.
- DictRegistry now fuly behaves as a dict.
- Fixes issue with app in ModuleAutoDiscoveryRegistry.
- Excludes option for ImportPathRegistry.
- Fixes handling of missing package resource directory.
- Fixes issue in configuration loading.
- Allows removal of registries.
- Fixes ImportError and SyntaxError handling.
- Documentation and code coverage improvements.
- Differentiates between missing and broken modules.
- New BlueprintAutoDiscoveryRegistry.
- New SingletonRegistry.

Version 0.1
-----------
- Initial public release
52 changes: 52 additions & 0 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
===================================
Flask-Registry v0.2.0 is released
===================================

Flask-Registry v0.2.0 was released on June 27, 2014.

About
-----

Flask-Registry is a Flask extension that allows frameworks to
dynamically assemble Flask application from reusable packages
consisting of blueprints, extensions, and configurations.

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

- ListRegistry now fuly behaves as a list.
- DictRegistry now fuly behaves as a dict.
- Fixes issue with app in ModuleAutoDiscoveryRegistry.
- Excludes option for ImportPathRegistry.
- Fixes handling of missing package resource directory.
- Fixes issue in configuration loading.
- Allows removal of registries.
- Fixes ImportError and SyntaxError handling.
- Documentation and code coverage improvements.
- Differentiates between missing and broken modules.
- New BlueprintAutoDiscoveryRegistry.
- New SingletonRegistry.

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

$ pip install Flask-Registry

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

http://flask-registry.readthedocs.org/en/v0.2.0

Homepage
--------

https://github.com/inveniosoftware/flask-registry

Good luck and thanks for choosing Flask-Registry.

| Invenio Development Team
| Email: info@invenio-software.org
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| GitHub: http://github.com/inveniosoftware
| URL: http://invenio-software.org
2 changes: 1 addition & 1 deletion flask_registry/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
# Do not change the format of this next line. Doing so risks breaking
# setup.py and docs/conf.py

__version__ = "0.2.0.dev20140625"
__version__ = "0.2.0"
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
##
## This file is part of Flask-Registry
## Copyright (C) 2013 CERN.
## Copyright (C) 2013, 2014 CERN.
##
## Flask-Registry is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -41,7 +41,8 @@
author_email='info@invenio-software.org',
description='Flask-Registry is an extension for Flask that allow '
'frameworks to dynamically assemble your Flask application from '
'reusable packages.',
'reusable packages consisting of blueprints, extensions, and '
'configurations.',
long_description=open('README.rst').read(),
packages=['flask_registry', 'flask_registry.registries'],
zip_safe=False,
Expand All @@ -58,14 +59,13 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
#'Programming Language :: Python :: 3.4',
#'Development Status :: 5 - Production/Stable',
'Development Status :: 5 - Production/Stable',
],
entry_points={
'flask_registry.test_entry': [
Expand Down

0 comments on commit 0a248c3

Please sign in to comment.