diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 14d099a2..ba8c8396 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.1 +current_version = 0.3.2 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index a43ac397..fb19b8d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.3.2 (2021-12-30) + + * Fix various issues with the dbt project and GitHub Actions that `sgr cloud seed` generates (https://github.com/splitgraph/splitgraph/pull/602, https://github.com/splitgraph/splitgraph/pull/591) + * Initial support for aggregation pushdown with Multicorn-backed FDWs (currently implemented in our fork of postgres-elasticsearch-fdw) + * https://github.com/splitgraph/splitgraph/pull/581 + * https://github.com/splitgraph/Multicorn/pull/1 + * https://github.com/splitgraph/postgres-elasticsearch-fdw/pull/1 + ## v0.3.1 (2021-12-20) Fix `sgr cloud sync` invocation issue (https://github.com/splitgraph/splitgraph/pull/589) diff --git a/install.sh b/install.sh index eb8738eb..2734b13b 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.3.1} +SGR_VERSION=${SGR_VERSION-0.3.2} 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 2035f581..aa35d530 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.3.1" +version = "0.3.2" 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 260c070a..f9aa3e11 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "0.3.2"