Skip to content

Commit

Permalink
Bump version: 0.2.10 → 0.2.11
Browse files Browse the repository at this point in the history
  * Snowflake data source improvements:
    * Allow passing envvars to set HTTP proxy parameters, fix incorrect query string generation when passing a warehouse (#414, #413)
    * Support for authentication using a private key (#418)
  * Splitfiles: relax AST restrictions to support all SELECT/INSERT/UPDATE/DELETE statements (#411)
  * Change the default installation port to 6432 and handle port conflicts during install (#375)
  * Add retry logic to fix registry closing the SSL connection after 30 seconds, close remote connections in some places (#417)
  • Loading branch information
mildbyte committed Mar 29, 2021
1 parent b074a31 commit f84b245
Show file tree
Hide file tree
Showing 5 changed files with 15 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.10
current_version = 0.2.11
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.2.11 (2021-03-29)

* Snowflake data source improvements:
* Allow passing envvars to set HTTP proxy parameters, fix incorrect query string generation when passing a warehouse (https://github.com/splitgraph/splitgraph/pull/414, https://github.com/splitgraph/splitgraph/issues/413)
* Support for authentication using a private key (https://github.com/splitgraph/splitgraph/pull/418)
* Splitfiles: relax AST restrictions to support all SELECT/INSERT/UPDATE/DELETE statements (https://github.com/splitgraph/splitgraph/issues/411)
* Change the default installation port to 6432 and handle port conflicts during install (https://github.com/splitgraph/splitgraph/issues/375)
* Add retry logic to fix registry closing the SSL connection after 30 seconds, close remote connections in some places (https://github.com/splitgraph/splitgraph/pull/417)

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

## v0.2.10 (2021-03-17)

* Fix CSV schema inference not supporting BIGINT data types (https://github.com/splitgraph/splitgraph/pull/407)
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.10}
SGR_VERSION=${SGR_VERSION-0.2.11}
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.10"
version = "0.2.11"
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.10"
__version__ = "0.2.11"

0 comments on commit f84b245

Please sign in to comment.