Skip to content

Commit

Permalink
Bump version: 0.2.15 → 0.2.16
Browse files Browse the repository at this point in the history
  * Various Airbyte ingestion improvements and support for different normalization modes, including a custom dbt model (#510, #513, #514)
  * Fix mount for data source with empty credentials schema (#515)
  * Fix `sgr cloud load`/`dump` (#520)

Full set of changes: [`v0.2.15...v0.2.16`](v0.2.15...v0.2.16)
  • Loading branch information
mildbyte committed Aug 18, 2021
1 parent 34c12ca commit e7553fc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.2.15
current_version = 0.2.16
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.2.16 (2021-08-18)

* Various Airbyte ingestion improvements and support for different normalization modes, including a custom dbt model (https://github.com/splitgraph/splitgraph/pull/510, https://github.com/splitgraph/splitgraph/pull/513, https://github.com/splitgraph/splitgraph/pull/514)
* Fix mount for data source with empty credentials schema (https://github.com/splitgraph/splitgraph/pull/515)
* Fix `sgr cloud load`/`dump` (https://github.com/splitgraph/splitgraph/pull/520)

Full set of changes: [`v0.2.15...v0.2.16`](https://github.com/splitgraph/splitgraph/compare/v0.2.15...v0.2.16)


## v0.2.15 (2021-07-26)

* API functionality to get the raw URL for a data source (https://github.com/splitgraph/splitgraph/pull/457)
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

set -eo pipefail

SGR_VERSION=${SGR_VERSION-0.2.15}
SGR_VERSION=${SGR_VERSION-0.2.16}
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "splitgraph"
version = "0.2.15"
version = "0.2.16"
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.15"
__version__ = "0.2.16"

0 comments on commit e7553fc

Please sign in to comment.