From 19f714ed0a410ead736383c4876c8d8256c0b348 Mon Sep 17 00:00:00 2001 From: Patrick Skinner Date: Thu, 28 Jul 2022 14:30:29 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.11=20=E2=86=92=200.3.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 3 +++ install.sh | 2 +- pyproject.toml | 2 +- splitgraph/__version__.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 006a0c4a..7d3d8391 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.11 +current_version = 0.3.12 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/CHANGELOG.md b/CHANGELOG.md index d2208e7a..40f8c7d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.3.12 (2022-07-28) + * Bump PostGIS deps in Engine + ## v0.3.11 (2022-07-28) * Fix bug for Python 3.10 compatibility (https://github.com/splitgraph/sgr/pull/704) diff --git a/install.sh b/install.sh index 0ad5f689..af651837 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ set -eo pipefail -SGR_VERSION=${SGR_VERSION-0.3.11} +SGR_VERSION=${SGR_VERSION-0.3.12} 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 069343f3..965aa94a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splitgraph" -version = "0.3.11" +version = "0.3.12" 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 91c67cc1..df0ed332 100644 --- a/splitgraph/__version__.py +++ b/splitgraph/__version__.py @@ -1 +1 @@ -__version__ = "0.3.11" +__version__ = "0.3.12"