Skip to content

Commit

Permalink
Bump version: 1.1.0 → 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Apr 12, 2021
1 parent cbbc7d5 commit fe3eb2e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.0
current_version = 1.2.0
commit = True
tag = True

Expand All @@ -10,3 +10,4 @@ tag = True
[bumpversion:file:materializationengine/blueprints/client/api.py]

[bumpversion:file:materializationengine/blueprints/materialize/api.py]

2 changes: 1 addition & 1 deletion materializationengine/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.2.0"
2 changes: 1 addition & 1 deletion materializationengine/blueprints/client/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from sqlalchemy.engine.url import make_url
from flask_restx import inputs
import time
__version__ = "1.1.0"
__version__ = "1.2.0"

authorizations = {
'apikey': {
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/blueprints/materialize/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from sqlalchemy.engine.url import make_url
from sqlalchemy.exc import NoSuchTableError

__version__ = "1.1.0"
__version__ = "1.2.0"


bulk_upload_parser = reqparse.RequestParser()
Expand Down
2 changes: 1 addition & 1 deletion materializationengine/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from materializationengine.schemas import (AnalysisTableSchema,
AnalysisVersionSchema)

__version__ = "1.1.0"
__version__ = "1.2.0"

views_bp = Blueprint("views", __name__, url_prefix="/materialize/views")

Expand Down

0 comments on commit fe3eb2e

Please sign in to comment.