diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 41ba57d5..2ef8f291 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.2.15 +current_version = 0.2.16 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b644598..31a99e1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.2.16 (2021-08-18) + + * Various Airbyte ingestion improvements and support for different normalization modes, including a custom dbt model (https://github.com/splitgraph/splitgraph/pull/510, https://github.com/splitgraph/splitgraph/pull/513, https://github.com/splitgraph/splitgraph/pull/514) + * Fix mount for data source with empty credentials schema (https://github.com/splitgraph/splitgraph/pull/515) + * Fix `sgr cloud load`/`dump` (https://github.com/splitgraph/splitgraph/pull/520) + +Full set of changes: [`v0.2.15...v0.2.16`](https://github.com/splitgraph/splitgraph/compare/v0.2.15...v0.2.16) + + ## v0.2.15 (2021-07-26) * API functionality to get the raw URL for a data source (https://github.com/splitgraph/splitgraph/pull/457) diff --git a/install.sh b/install.sh index a80e8e42..42b3b03c 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.2.15} +SGR_VERSION=${SGR_VERSION-0.2.16} INSTALL_DIR=${INSTALL_DIR-$HOME/.splitgraph} # Set IGNORE_SGR_EXISTS to keep going if sgr already exists. # Set SKIP_BINARY=1 to skip downloading sgr diff --git a/pyproject.toml b/pyproject.toml index 9546695f..dbd117f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.2.15" +version = "0.2.16" description = "Command line library and Python client for Splitgraph, a version control system for data" license = "Apache 2.0 modified with Commons Clause" authors = ["Splitgraph Limited"] diff --git a/splitgraph/__version__.py b/splitgraph/__version__.py index ddc77a88..699eb888 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.2.15" +__version__ = "0.2.16"