diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 99296dcc..7131ddef 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.4 +current_version = 0.3.5 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index f31065be..98e113cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.3.5 (2022-01-31) + + * Support for aggregation and GROUP BY pushdown for the Snowflake FDW + * https://github.com/splitgraph/splitgraph/pull/620 + * https://github.com/splitgraph/Multicorn/pull/3 + * Fix FDW previews when column names have percentage signs (https://github.com/splitgraph/splitgraph/pull/619) + ## v0.3.4 (2022-01-21) * Further support for aggregation pushdown with Multicorn-backed FDWs diff --git a/install.sh b/install.sh index 882cc55e..c5de552b 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.3.4} +SGR_VERSION=${SGR_VERSION-0.3.5} 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 851506c0..a7cfa4f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.3.4" +version = "0.3.5" 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 334b8995..a8d4557d 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.3.4" +__version__ = "0.3.5"