File tree Expand file tree Collapse file tree 6 files changed +18
-4
lines changed
Expand file tree Collapse file tree 6 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
22commit = True
33tag = True
4- current_version = 0.3.9
4+ current_version = 0.3.10
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66serialize =
77 {major}.{minor}.{patch}-{release}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.3.10 (2022-06-08)
4+
5+ * Fix surrogate PK object ordering edge case, impacting some LQ mounts (https://github.com/splitgraph/splitgraph/pull/681 ).
6+ * Add new ` postgres_fdw ` params: ` use_remote_estimate ` and ` fetch_size ` (https://github.com/splitgraph/splitgraph/pull/678 )
7+ * Add support for writable LQ to Splitfiles (https://github.com/splitgraph/splitgraph/pull/668 )
8+
39## v0.3.9 (2022-04-26)
410
511Add support for writes when using layered querying (` sgr checkout --layered ` ) (https://github.com/splitgraph/splitgraph/pull/662 ). Note
Original file line number Diff line number Diff line change @@ -101,6 +101,14 @@ splitgraph.core.output module
101101 :undoc-members:
102102 :show-inheritance:
103103
104+ splitgraph.core.overlay module
105+ ------------------------------
106+
107+ .. automodule :: splitgraph.core.overlay
108+ :members:
109+ :undoc-members:
110+ :show-inheritance:
111+
104112splitgraph.core.registry module
105113-------------------------------
106114
Original file line number Diff line number Diff line change 1212
1313set -eo pipefail
1414
15- SGR_VERSION=${SGR_VERSION-0.3.9 }
15+ SGR_VERSION=${SGR_VERSION-0.3.10 }
1616INSTALL_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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " splitgraph"
3- version = " 0.3.9 "
3+ version = " 0.3.10 "
44description = " Command line library and Python client for Splitgraph, a version control system for data"
55license = " Apache 2.0 modified with Commons Clause"
66authors = [" Splitgraph Limited" ]
Original file line number Diff line number Diff line change 1- __version__ = "0.3.9 "
1+ __version__ = "0.3.10 "
You can’t perform that action at this time.
0 commit comments