File tree 5 files changed +11
-4
lines changed
5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
commit = True
3
3
tag = True
4
- current_version = 0.3.8
4
+ current_version = 0.3.9
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6
6
serialize =
7
7
{major}.{minor}.{patch}-{release}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
10
## v0.3.8 (2022-03-18)
4
11
5
12
* Fix slow startup of ` sgr ` binary on Mac OS / Darwin (https://github.com/splitgraph/splitgraph/pull/656 )
Original file line number Diff line number Diff line change 12
12
13
13
set -eo pipefail
14
14
15
- SGR_VERSION=${SGR_VERSION-0.3.8 }
15
+ SGR_VERSION=${SGR_VERSION-0.3.9 }
16
16
INSTALL_DIR=${INSTALL_DIR-$HOME / .splitgraph}
17
17
# Set IGNORE_SGR_EXISTS to keep going if sgr already exists.
18
18
# Set SKIP_BINARY=1 to skip downloading sgr
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " splitgraph"
3
- version = " 0.3.8 "
3
+ version = " 0.3.9 "
4
4
description = " Command line library and Python client for Splitgraph, a version control system for data"
5
5
license = " Apache 2.0 modified with Commons Clause"
6
6
authors = [" Splitgraph Limited" ]
Original file line number Diff line number Diff line change 1
- __version__ = "0.3.8 "
1
+ __version__ = "0.3.9 "
You can’t perform that action at this time.
0 commit comments