Skip to content

Commit

Permalink
Merge 6b62f0e into 14b969d
Browse files Browse the repository at this point in the history
  • Loading branch information
lalmei authored Aug 26, 2021
2 parents 14b969d + 6b62f0e commit a8e542d
Show file tree
Hide file tree
Showing 7 changed files with 187 additions and 32 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.6.0
current_version = 0.6.2-dev1
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/push_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry install twine
make clean
make dist
poetry run twine upload dist/*
bump_mainline:
Expand All @@ -84,7 +84,6 @@ jobs:
# git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
# git config --local user.name "github-actions[bot]"
poetry run bump2version patch --verbose --no-tag --new-version $VERSION
make bump-dev
- name: Create Pull Request
id: cpr
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ src.python.pyc := $(shell find ./src -type f -name "*.pyc")
src.proto.dir := ./proto/src
src.proto := $(shell find $(src.proto.dir) -type f -name "*.proto")

version := 0.6.0
version := 0.6.2-dev1

dist.dir := dist
egg.dir := .eggs
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
# built documents.
#
# The short X.Y version.
version = "0.6.0"
version = "0.6.2-dev1"
# The full version, including alpha/beta/rc tags.
release = "" # Is set by calling `setup.py docs`

Expand Down
205 changes: 180 additions & 25 deletions poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "whylogs"
version = "0.6.0"
version = "0.6.2-dev1"
description = "Profile and monitor your ML data pipeline end-to-end"
authors = ["WhyLabs.ai <support@whylabs.ai>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -71,6 +71,7 @@ ipywidgets = "^7.6.3"
jiwer = "^2.2.0"
pyarrow = "^5.0.0"
pybars3 = "^0.9.7"
twine = "^3.4.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion src/whylogs/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""WhyLabs version number."""

__version__ = "0.6.0"
__version__ = "0.6.2-dev1"

0 comments on commit a8e542d

Please sign in to comment.