diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fad01182..03296b03 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.2.5 +current_version = 0.2.6 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index f9cf6170..9f746c5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.2.6 (2021-03-04) + + * Fix querying when there are NULLs in primary keys (https://github.com/splitgraph/splitgraph/pull/373) + * Data source and foreign data wrapper for querying CSV files in S3 buckets and HTTP (https://github.com/splitgraph/splitgraph/pull/397) + * Ctrl+C can now interrupt long-running PostgreSQL queries and stop sgr (https://github.com/splitgraph/splitgraph/pull/398) + * Support for updating miscellaneous repository metadata from the `sgr cloud metadata` CLI (https://github.com/splitgraph/splitgraph/pull/399) + +Full set of changes: [`v0.2.5...v0.2.6`](https://github.com/splitgraph/splitgraph/compare/v0.2.5...v0.2.6) + ## v0.2.5 (2021-01-25) * Fix piping CSV files from stdin (https://github.com/splitgraph/splitgraph/pull/350) diff --git a/install.sh b/install.sh index e0b823c4..b9ce317c 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.2.5} +SGR_VERSION=${SGR_VERSION-0.2.6} 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 bab7b606..042118de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.2.5" +version = "0.2.6" 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 fe404ae5..01ef1207 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.2.5" +__version__ = "0.2.6"