From 45dd0fc1bd39e715730b1883af4e24263d4a08af Mon Sep 17 00:00:00 2001 From: Bastien Boutonnet Date: Thu, 21 Nov 2019 20:11:31 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0b0=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 6 +++--- setup.py | 2 +- sheetload/_version.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 80053262..d7b8e79c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0b0 +current_version = 0.1.0 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/README.md b/README.md index e87540d4..8ab07ee3 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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://git@github.com/bastienboutonnet/sheetload.git@v0.1.0b0 +pip install git+ssh://git@github.com/bastienboutonnet/sheetload.git@v0.1.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/). @@ -26,7 +26,7 @@ sheetload --version Should display something like this: ```bash ➜ sheetload --version -sheetload 0.1.0b0 +sheetload 0.1.0 ``` ## Usage diff --git a/setup.py b/setup.py index 1dbbf09b..c01d4b0e 100644 --- a/setup.py +++ b/setup.py @@ -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 diff --git a/sheetload/_version.py b/sheetload/_version.py index dcf6310a..3dc1f76b 100644 --- a/sheetload/_version.py +++ b/sheetload/_version.py @@ -1 +1 @@ -__version__ = "0.1.0b0" +__version__ = "0.1.0"