Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
[skip test]
[skip docs]
  • Loading branch information
mildbyte committed Dec 20, 2021
1 parent 7ad1c49 commit b740bf1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 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.3.0
current_version = 0.3.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build_and_test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ jobs:
env:
SG_DEMO_KEY: ${{ secrets.SG_DEMO_KEY }}
SG_DEMO_SECRET: ${{ secrets.SG_DEMO_SECRET }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
echo "Building Asciicast/doc bundle"
export PATH=$PATH:$(readlink -f $DBT_VENV/bin)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.3.1 (2021-12-20)

Fix `sgr cloud sync` invocation issue (https://github.com/splitgraph/splitgraph/pull/589)

## v0.3.0 (2021-12-17)

Fleshing out the `splitgraph.yml` (aka `repositories.yml`) format that defines a Splitgraph Cloud "project" (datasets, their sources and metadata).
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.3.0}
SGR_VERSION=${SGR_VERSION-0.3.1}
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.3.0"
version = "0.3.1"
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.3.0"
__version__ = "0.3.1"

0 comments on commit b740bf1

Please sign in to comment.