From cc98bd8a87b1252d69f31a8f066818e2a4b7bb70 Mon Sep 17 00:00:00 2001 From: Artjoms Iskovs Date: Wed, 17 Nov 2021 15:07:32 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.17=20=E2=86=92=200.2.18?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Splitfile speedups (https://github.com/splitgraph/splitgraph/pull/567) * Various query speedups (https://github.com/splitgraph/splitgraph/pull/563, https://github.com/splitgraph/splitgraph/pull/561) * More robust CSV querying (https://github.com/splitgraph/splitgraph/pull/562) Full set of changes: [`v0.2.17...v0.2.18`](https://github.com/splitgraph/splitgraph/compare/v0.2.17...v0.2.18) --- .bumpversion.cfg | 2 +- install.sh | 2 +- pyproject.toml | 2 +- splitgraph/__version__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ff267e87..a7411975 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.2.17 +current_version = 0.2.18 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/install.sh b/install.sh index 3eaee02e..d95c078f 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.2.17} +SGR_VERSION=${SGR_VERSION-0.2.18} 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 aa64c5bb..e4422ed5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.2.17" +version = "0.2.18" 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 aa0be213..927de258 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.2.17" +__version__ = "0.2.18"