Skip to content

Commit e4e4fe0

Browse files
committed
Bump version: 0.3.8 → 0.3.9
1 parent dbb693e commit e4e4fe0

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 0.3.8
4+
current_version = 0.3.9
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.3.9 (2022-04-26)
4+
5+
Add support for writes when using layered querying (`sgr checkout --layered`) (https://github.com/splitgraph/splitgraph/pull/662). Note
6+
schema changes when an image is checked out in layered querying mode are currently unsupported.
7+
8+
Also add support for using writeable layered querying when using Splitfiles (https://github.com/splitgraph/splitgraph/pull/668).
9+
310
## v0.3.8 (2022-03-18)
411

512
* Fix slow startup of `sgr` binary on Mac OS / Darwin (https://github.com/splitgraph/splitgraph/pull/656)

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
set -eo pipefail
1414

15-
SGR_VERSION=${SGR_VERSION-0.3.8}
15+
SGR_VERSION=${SGR_VERSION-0.3.9}
1616
INSTALL_DIR=${INSTALL_DIR-$HOME/.splitgraph}
1717
# Set IGNORE_SGR_EXISTS to keep going if sgr already exists.
1818
# Set SKIP_BINARY=1 to skip downloading sgr

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "splitgraph"
3-
version = "0.3.8"
3+
version = "0.3.9"
44
description = "Command line library and Python client for Splitgraph, a version control system for data"
55
license = "Apache 2.0 modified with Commons Clause"
66
authors = ["Splitgraph Limited"]

splitgraph/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.8"
1+
__version__ = "0.3.9"

0 commit comments

Comments
 (0)