Skip to content

Commit

Permalink
Merge pull request #67 from raphaelrpl/command-line
Browse files Browse the repository at this point in the history
fix extension init (close #66)
  • Loading branch information
raphaelrpl authored Apr 18, 2022
2 parents db6267c + e00532e commit c670e3c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ BDC-DB - Changes
================


Version 0.6.2 (2022-04-18)
--------------------------

- Fix extension initialization - variable not declared (`#66 <https://github.com/brazil-data-cube/bdc-db/issues/66>`_).


Version 0.6.1 (2022-01-05)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion bdc_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .version import __version__


def create_app(config):
def create_app():
"""Flask application factory.
Returns:
Expand Down
2 changes: 1 addition & 1 deletion bdc_db/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

"""Version information for BDC-DB."""

__version__ = '0.6.1'
__version__ = '0.6.2'
2 changes: 1 addition & 1 deletion tests/test_bdc_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_cli(app):
runner = app.test_cli_runner()

# Test package initialization
_ = create_app(dict())
_ = create_app()

# Create minimal db
if not database_exists(SQLALCHEMY_DATABASE_URI):
Expand Down

0 comments on commit c670e3c

Please sign in to comment.