Skip to content

Commit

Permalink
Bump version: 0.2.4 → 0.2.5
Browse files Browse the repository at this point in the history
  * Fix piping CSV files from stdin (#350)
  * Truncate commit comments if they're above the max field size (currently 4096) (#353)
  * Add support for updating repository topics from the CLI (`sgr cloud metadata`) (#371)
  • Loading branch information
mildbyte committed Jan 25, 2021
1 parent 7e97c0f commit 503e1ef
Show file tree
Hide file tree
Showing 5 changed files with 12 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.4
current_version = 0.2.5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v0.2.5 (2021-01-25)

* Fix piping CSV files from stdin (https://github.com/splitgraph/splitgraph/pull/350)
* Truncate commit comments if they're above the max field size (currently 4096) (https://github.com/splitgraph/splitgraph/pull/353)
* Add support for updating repository topics from the CLI (`sgr cloud metadata`) (https://github.com/splitgraph/splitgraph/pull/371)

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

## v0.2.4 (2020-12-08)

* Mount handlers are now called "data sources", a generalization that will make them more pluggable
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.4}
SGR_VERSION=${SGR_VERSION-0.2.5}
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.4"
version = "0.2.5"
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.4"
__version__ = "0.2.5"

0 comments on commit 503e1ef

Please sign in to comment.