Skip to content

Commit

Permalink
Bump version: 0.3.9 → 0.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
gruuya committed Jun 8, 2022
1 parent 2e52324 commit d2147f9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.3.9
current_version = 0.3.10
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## v0.3.10 (2022-06-08)

* Fix surrogate PK object ordering edge case, impacting some LQ mounts (https://github.com/splitgraph/splitgraph/pull/681).
* Add new `postgres_fdw` params: `use_remote_estimate` and `fetch_size` (https://github.com/splitgraph/splitgraph/pull/678)
* Add support for writable LQ to Splitfiles (https://github.com/splitgraph/splitgraph/pull/668)

## v0.3.9 (2022-04-26)

Add support for writes when using layered querying (`sgr checkout --layered`) (https://github.com/splitgraph/splitgraph/pull/662). Note
Expand Down
8 changes: 8 additions & 0 deletions docs/api/splitgraph.core.rst
Expand Up @@ -101,6 +101,14 @@ splitgraph.core.output module
:undoc-members:
:show-inheritance:

splitgraph.core.overlay module
------------------------------

.. automodule:: splitgraph.core.overlay
:members:
:undoc-members:
:show-inheritance:

splitgraph.core.registry module
-------------------------------

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -12,7 +12,7 @@

set -eo pipefail

SGR_VERSION=${SGR_VERSION-0.3.9}
SGR_VERSION=${SGR_VERSION-0.3.10}
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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "splitgraph"
version = "0.3.9"
version = "0.3.10"
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"]
Expand Down
2 changes: 1 addition & 1 deletion splitgraph/__version__.py
@@ -1 +1 @@
__version__ = "0.3.9"
__version__ = "0.3.10"

0 comments on commit d2147f9

Please sign in to comment.