Skip to content

Commit

Permalink
Bump version: 0.1.0b0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bastienboutonnet committed Nov 21, 2019
1 parent eea55e0 commit 45dd0fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0b0
current_version = 0.1.0
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![CodeFactor](https://www.codefactor.io/repository/github/bastienboutonnet/sheetload/badge)](https://www.codefactor.io/repository/github/bastienboutonnet/sheetload)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

Package Version: `v0.1.0b0`
Package Version: `v0.1.0`

# sheetload 💩🤦
A handy package to load Google Sheets to Snowflake
Expand All @@ -15,7 +15,7 @@ Performs some cleanups on column names and string (such as removing trailing spa
3. Make sure your access tokens and usernames are installed according to TripActions Data Tooling standards. Setup information can be found in [data_tools Credentials](https://github.com/tripactions/data_tooling/blob/master/README.md#credentials).
4. Install Sheetload
```bash
pip install git+ssh://[email protected]/bastienboutonnet/[email protected].0b0
pip install git+ssh://[email protected]/bastienboutonnet/[email protected].0
```
Make sure you've setup your GitHub ssh keys, if you don't know how to do it, check [here](https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/).

Expand All @@ -26,7 +26,7 @@ sheetload --version
Should display something like this:
```bash
➜ sheetload --version
sheetload 0.1.0b0
sheetload 0.1.0
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

NAME = "sheetload"
VERSION = "0.1.0b0"
VERSION = "0.1.0"
DESCRIPTION = """
sheetload is a command line tool to load sheets from google
and upload them to snowflake
Expand Down
2 changes: 1 addition & 1 deletion sheetload/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0b0"
__version__ = "0.1.0"

0 comments on commit 45dd0fc

Please sign in to comment.