File tree 5 files changed +12
-5
lines changed
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
commit = True
3
3
tag = True
4
- current_version = 0.2.9
4
+ current_version = 0.2.10
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6
6
serialize =
7
7
{major}.{minor}.{patch}-{release}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
11
## v0.2.9 (2021-03-12)
4
12
5
13
* Add a Snowflake data source, backed by a SQLAlchemy connector (https://github.com/splitgraph/splitgraph/pull/404 )
6
14
7
15
Full set of changes: [ ` v0.2.8...v0.2.9 ` ] ( https://github.com/splitgraph/splitgraph/compare/v0.2.8...v0.2.9 )
8
16
9
-
10
17
## v0.2.8 (2021-03-09)
11
18
12
19
* Allow deleting tags on remote registries (https://github.com/splitgraph/splitgraph/pull/403 )
Original file line number Diff line number Diff line change 12
12
13
13
set -eo pipefail
14
14
15
- SGR_VERSION=${SGR_VERSION-0.2.9 }
15
+ SGR_VERSION=${SGR_VERSION-0.2.10 }
16
16
INSTALL_DIR=${INSTALL_DIR-$HOME / .splitgraph}
17
17
# Set IGNORE_SGR_EXISTS to keep going if sgr already exists.
18
18
# Set SKIP_BINARY=1 to skip downloading sgr
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " splitgraph"
3
- version = " 0.2.9 "
3
+ version = " 0.2.10 "
4
4
description = " Command line library and Python client for Splitgraph, a version control system for data"
5
5
license = " Apache 2.0 modified with Commons Clause"
6
6
authors = [" Splitgraph Limited" ]
Original file line number Diff line number Diff line change 1
- __version__ = "0.2.9 "
1
+ __version__ = "0.2.10 "
You can’t perform that action at this time.
0 commit comments