Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #15 from fishtown-analytics/pr/add-bumpversion
Browse files Browse the repository at this point in the history
Add bumpversion
  • Loading branch information
beckjake authored Mar 23, 2020
2 parents d89b934 + 852055a commit 084f010
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[bumpversion]
current_version = 0.15.3
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
((?P<prerelease>[a-z]+)(?P<num>\d+))?
serialize =
{major}.{minor}.{patch}{prerelease}{num}
{major}.{minor}.{patch}
commit = False
tag = False

[bumpversion:part:prerelease]
first_value = a
values =
a
b
rc

[bumpversion:part:num]
first_value = 1

[bumpversion:file:setup.py]

[bumpversion:file:docker/dbt/Dockerfile]

3 changes: 3 additions & 0 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bumpversion
wheel
twine
2 changes: 1 addition & 1 deletion docker/dbt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.8.1-slim-buster

ENV DBT_VERSION "0.15.2"
ENV DBT_VERSION "0.15.3"
ENV DBT_DIR /opt/dbt-presto

RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


package_name = "dbt-presto"
package_version = "0.15.2"
package_version = "0.15.3"
description = """The presto adpter plugin for dbt (data build tool)"""

setup(
Expand Down

0 comments on commit 084f010

Please sign in to comment.