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

Commit 0a248c3

Browse files
committed
Flask-Registry v0.2.0
Signed-off-by: Tibor Simko <[email protected]>
1 parent 134c2b7 commit 0a248c3

File tree

6 files changed

+75
-8
lines changed

6 files changed

+75
-8
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ python:
2727
- "2.6"
2828
- "2.7"
2929
- "3.3"
30-
# - "3.4"
3130

3231
install:
3332
- pip install --upgrade pip --use-mirrors

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ Contributors
1010
* Lars Holm Nielsen <[email protected]>
1111
* Jiri Kuncar <[email protected]>
1212
* Esteban J. G. Gabancho <[email protected]>
13-
* Tibor Simko <[email protected]>
13+
* Tibor Simko <[email protected]>
14+
* Yoan Blanc <[email protected]>

CHANGES

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ Changelog
44
Here you can see the full list of changes between each Flask-Registry
55
release.
66

7+
Version 0.2.0 (released 2014-06-27)
8+
-----------------------------------
9+
- ListRegistry now fuly behaves as a list.
10+
- DictRegistry now fuly behaves as a dict.
11+
- Fixes issue with app in ModuleAutoDiscoveryRegistry.
12+
- Excludes option for ImportPathRegistry.
13+
- Fixes handling of missing package resource directory.
14+
- Fixes issue in configuration loading.
15+
- Allows removal of registries.
16+
- Fixes ImportError and SyntaxError handling.
17+
- Documentation and code coverage improvements.
18+
- Differentiates between missing and broken modules.
19+
- New BlueprintAutoDiscoveryRegistry.
20+
- New SingletonRegistry.
21+
722
Version 0.1
823
-----------
924
- Initial public release

RELEASE-NOTES.rst

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
===================================
2+
Flask-Registry v0.2.0 is released
3+
===================================
4+
5+
Flask-Registry v0.2.0 was released on June 27, 2014.
6+
7+
About
8+
-----
9+
10+
Flask-Registry is a Flask extension that allows frameworks to
11+
dynamically assemble Flask application from reusable packages
12+
consisting of blueprints, extensions, and configurations.
13+
14+
What's new
15+
----------
16+
17+
- ListRegistry now fuly behaves as a list.
18+
- DictRegistry now fuly behaves as a dict.
19+
- Fixes issue with app in ModuleAutoDiscoveryRegistry.
20+
- Excludes option for ImportPathRegistry.
21+
- Fixes handling of missing package resource directory.
22+
- Fixes issue in configuration loading.
23+
- Allows removal of registries.
24+
- Fixes ImportError and SyntaxError handling.
25+
- Documentation and code coverage improvements.
26+
- Differentiates between missing and broken modules.
27+
- New BlueprintAutoDiscoveryRegistry.
28+
- New SingletonRegistry.
29+
30+
Installation
31+
------------
32+
33+
$ pip install Flask-Registry
34+
35+
Documentation
36+
-------------
37+
38+
http://flask-registry.readthedocs.org/en/v0.2.0
39+
40+
Homepage
41+
--------
42+
43+
https://github.com/inveniosoftware/flask-registry
44+
45+
Good luck and thanks for choosing Flask-Registry.
46+
47+
| Invenio Development Team
48+
49+
| IRC: #invenio on irc.freenode.net
50+
| Twitter: http://twitter.com/inveniosoftware
51+
| GitHub: http://github.com/inveniosoftware
52+
| URL: http://invenio-software.org

flask_registry/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
# Do not change the format of this next line. Doing so risks breaking
3232
# setup.py and docs/conf.py
3333

34-
__version__ = "0.2.0.dev20140625"
34+
__version__ = "0.2.0"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
##
33
## This file is part of Flask-Registry
4-
## Copyright (C) 2013 CERN.
4+
## Copyright (C) 2013, 2014 CERN.
55
##
66
## Flask-Registry is free software; you can redistribute it and/or
77
## modify it under the terms of the GNU General Public License as
@@ -41,7 +41,8 @@
4141
author_email='[email protected]',
4242
description='Flask-Registry is an extension for Flask that allow '
4343
'frameworks to dynamically assemble your Flask application from '
44-
'reusable packages.',
44+
'reusable packages consisting of blueprints, extensions, and '
45+
'configurations.',
4546
long_description=open('README.rst').read(),
4647
packages=['flask_registry', 'flask_registry.registries'],
4748
zip_safe=False,
@@ -58,14 +59,13 @@
5859
'Operating System :: OS Independent',
5960
'Programming Language :: Python',
6061
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
61-
'Topic :: Software Development :: Libraries :: Python Modules'
62+
'Topic :: Software Development :: Libraries :: Python Modules',
6263
'Programming Language :: Python :: 2',
6364
'Programming Language :: Python :: 2.6',
6465
'Programming Language :: Python :: 2.7',
6566
'Programming Language :: Python :: 3',
6667
'Programming Language :: Python :: 3.3',
67-
#'Programming Language :: Python :: 3.4',
68-
#'Development Status :: 5 - Production/Stable',
68+
'Development Status :: 5 - Production/Stable',
6969
],
7070
entry_points={
7171
'flask_registry.test_entry': [

0 commit comments

Comments
 (0)