Skip to content

Commit 3688be4

Browse files
committedMar 17, 2021
Bump version: 0.2.9 → 0.2.10
1 parent cf8105d commit 3688be4

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 0.2.9
4+
current_version = 0.2.10
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}

‎CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
# Changelog
22

3+
## v0.2.10 (2021-03-17)
4+
5+
* Fix CSV schema inference not supporting BIGINT data types (https://github.com/splitgraph/splitgraph/pull/407)
6+
* Fix Splitfiles only expecting tags to contain alphanumeric characters (https://github.com/splitgraph/splitgraph/pull/407)
7+
* Speedups for the Snowflake / SQLAlchemy data soure (https://github.com/splitgraph/splitgraph/pull/405)
8+
9+
Full set of changes: [`v0.2.10...v0.2.10`](https://github.com/splitgraph/splitgraph/compare/v0.2.9...v0.2.10)
10+
311
## v0.2.9 (2021-03-12)
412

513
* Add a Snowflake data source, backed by a SQLAlchemy connector (https://github.com/splitgraph/splitgraph/pull/404)
614

715
Full set of changes: [`v0.2.8...v0.2.9`](https://github.com/splitgraph/splitgraph/compare/v0.2.8...v0.2.9)
816

9-
1017
## v0.2.8 (2021-03-09)
1118

1219
* Allow deleting tags on remote registries (https://github.com/splitgraph/splitgraph/pull/403)

‎install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
set -eo pipefail
1414

15-
SGR_VERSION=${SGR_VERSION-0.2.9}
15+
SGR_VERSION=${SGR_VERSION-0.2.10}
1616
INSTALL_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

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "splitgraph"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
description = "Command line library and Python client for Splitgraph, a version control system for data"
55
license = "Apache 2.0 modified with Commons Clause"
66
authors = ["Splitgraph Limited"]

‎splitgraph/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.9"
1+
__version__ = "0.2.10"

0 commit comments

Comments
 (0)
Please sign in to comment.