From 7021f741d5df152426441fa904d34fc35a9eb502 Mon Sep 17 00:00:00 2001 From: zturechek Date: Tue, 16 Mar 2021 16:56:41 -0400 Subject: [PATCH] Bump version to 0.4.0 --- Dockerfile | 3 +-- fh_immuta_utils/__init__.py | 2 +- release_notes/@vNext.md | 11 +---------- release_notes/v0.4.0.md | 10 ++++++++++ setup.py | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) create mode 100644 release_notes/v0.4.0.md diff --git a/Dockerfile b/Dockerfile index e3f94f3..a5c0e22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ # Build container conda env FROM python:3.7 -ENV LIBRARY_VERSION 0.3.0 +ENV LIBRARY_VERSION 0.4.0 RUN pip install "fh-immuta-utils==${LIBRARY_VERSION}" ENTRYPOINT "fh-immuta-utils" - diff --git a/fh_immuta_utils/__init__.py b/fh_immuta_utils/__init__.py index 493f741..6a9beea 100644 --- a/fh_immuta_utils/__init__.py +++ b/fh_immuta_utils/__init__.py @@ -1 +1 @@ -__version__ = "0.3.0" +__version__ = "0.4.0" diff --git a/release_notes/@vNext.md b/release_notes/@vNext.md index 34177ad..facc373 100644 --- a/release_notes/@vNext.md +++ b/release_notes/@vNext.md @@ -1,10 +1 @@ -# 0.4.0 (2020-03-01) - -## Compatible with Immuta version `>=2020.3.4` - -### Added -- Ability to control schema evolution settings for a remote database/server from configuration. -### Changed -- Immuta data source and query engine table name truncation character limits. Limits for both are now set to 255 to - align with the accepted limits by the Immuta application. Users with previously truncated data source or query engine - table names should delete and re-enroll those data sources to enroll the full names. + diff --git a/release_notes/v0.4.0.md b/release_notes/v0.4.0.md new file mode 100644 index 0000000..34177ad --- /dev/null +++ b/release_notes/v0.4.0.md @@ -0,0 +1,10 @@ +# 0.4.0 (2020-03-01) + +## Compatible with Immuta version `>=2020.3.4` + +### Added +- Ability to control schema evolution settings for a remote database/server from configuration. +### Changed +- Immuta data source and query engine table name truncation character limits. Limits for both are now set to 255 to + align with the accepted limits by the Immuta application. Users with previously truncated data source or query engine + table names should delete and re-enroll those data sources to enroll the full names. diff --git a/setup.py b/setup.py index 71bb3f4..755d93b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name=NAME, - version="0.3.0", + version="0.4.0", entry_points={ "console_scripts": ["fh-immuta-utils = fh_immuta_utils.scripts.cli:main_cli"] },