Skip to content

Commit

Permalink
Merge branch 'release/2.11' into develop
Browse files Browse the repository at this point in the history
* release/2.11:
  bump version
  • Loading branch information
saxix committed Feb 19, 2020
2 parents d26c07c + c1237d7 commit 135bba6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.11.0a0
current_version = 2.11
commit = False
tag = False
allow_dirty = True
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.11
----
* fixes #18276 - Add `Achievement in reporting period` field to the prp/datareport endpoint

2.10.1
------
* use poetry instead of pipenv
Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DATABASE_URL_ETOOLS?=
DEVELOP?=1
DOCKER_PASS?=
DOCKER_USER?=
TARGET?=2.11.0a
TARGET?=2.11
PUSH_BASE?=1
BASE?=$(shell echo "${TARGET}" | sed "s/\([0-9]*\)\.\([0-9]*\)\.\(.*\)/\1.\2/g" )
#BASE?=$(shell echo "${TARGET}" | sed "s/\([0-9]*\)\.\([0-9]*\)\.\(.*\)/\1.\2/g" | echo "`xargs`xx" )
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datamart-core"
version = "2.11.0a"
version = "2.11"
description = ""
authors = ["sax <s.apostolico@gmail.com>"]

Expand Down
4 changes: 2 additions & 2 deletions src/etools_datamart/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import warnings

NAME = 'etools-datamart'
VERSION = __version__ = '2.11.0a'
VERSION = __version__ = '2.11'
__author__ = ''

# UserWarning: The psycopg2 wheel package will be renamed from release 2.11.0a;
# UserWarning: The psycopg2 wheel package will be renamed from release 2.11;
warnings.simplefilter("ignore", UserWarning, 144)

0 comments on commit 135bba6

Please sign in to comment.