Skip to content
This repository has been archived by the owner on Mar 26, 2022. It is now read-only.

Commit

Permalink
release 0.4.0 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn authored Jan 9, 2021
1 parent 6fc5ab2 commit 5ac7b71
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,16 @@ setup:

fmt:
poetry run black .
poetry run isort .
poetry run isort .

clean:
rm -rf dist

build:
poetry build

publish: clean build
poetry publish

release: clean build
ghr -u crflynn -r databricks-dbapi -c $(shell git rev-parse HEAD) -delete -b "release" -n $(shell poetry version | tail -c +18) $(shell poetry version | tail -c +18) dist/*
2 changes: 1 addition & 1 deletion databricks_dbapi/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__title__ = "databricks_dbapi"
__description__ = "Databricks DBAPI."
__url__ = "https://github.com/crflynn/databricks-dbapi"
__version__ = "0.3.0"
__version__ = "0.4.0"
__author__ = "Christopher Flynn"
__author_email__ = "crf204@gmail.com"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ line_length = 120

[tool.poetry]
name = "databricks_dbapi"
version = "0.3.0"
version = "0.4.0"
description = "A DBAPI 2.0 interface and SQLAlchemy dialect for Databricks interactive clusters."
authors = ["Christopher Flynn <crf204@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 5ac7b71

Please sign in to comment.