diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7dc17d5f..0c3e2e03 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.2.10 +current_version = 0.2.11 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ce4f8bb..38705742 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v0.2.11 (2021-03-29) + + * Snowflake data source improvements: + * Allow passing envvars to set HTTP proxy parameters, fix incorrect query string generation when passing a warehouse (https://github.com/splitgraph/splitgraph/pull/414, https://github.com/splitgraph/splitgraph/issues/413) + * Support for authentication using a private key (https://github.com/splitgraph/splitgraph/pull/418) + * Splitfiles: relax AST restrictions to support all SELECT/INSERT/UPDATE/DELETE statements (https://github.com/splitgraph/splitgraph/issues/411) + * Change the default installation port to 6432 and handle port conflicts during install (https://github.com/splitgraph/splitgraph/issues/375) + * Add retry logic to fix registry closing the SSL connection after 30 seconds, close remote connections in some places (https://github.com/splitgraph/splitgraph/pull/417) + +Full set of changes: [`v0.2.10...v0.2.11`](https://github.com/splitgraph/splitgraph/compare/v0.2.10...v0.2.11) + ## v0.2.10 (2021-03-17) * Fix CSV schema inference not supporting BIGINT data types (https://github.com/splitgraph/splitgraph/pull/407) diff --git a/install.sh b/install.sh index dbaf801f..50da861d 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.2.10} +SGR_VERSION=${SGR_VERSION-0.2.11} 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 c2fc8057..ea62741c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.2.10" +version = "0.2.11" 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 6232f7ab..5635676f 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.2.10" +__version__ = "0.2.11"