diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3dc562b022..c8bba782f2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.4 +current_version = 0.7.5 tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? serialize = diff --git a/Makefile b/Makefile index d50d02bd1c..0ea4ea83a3 100644 --- a/Makefile +++ b/Makefile @@ -5,11 +5,12 @@ 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.7.4 +version := 0.7.5 dist.dir := dist egg.dir := .eggs build.dir := build + # This isn't exactly true but its the only thing that we easily know the name of at this point. Its a good proxy for # the wheel since its created along with it. build.wheel := $(dist.dir)/whylogs-$(version).tar.gz diff --git a/docs/conf.py b/docs/conf.py index 94096cbd15..b1686ecbf3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,7 +101,7 @@ # built documents. # # The short X.Y version. -version = "0.7.4" +version = "0.7.5" # The full version, including alpha/beta/rc tags. release = "" # Is set by calling `setup.py docs` diff --git a/pyproject.toml b/pyproject.toml index 3138606829..c45bc1ff25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "whylogs" -version = "0.7.4" +version = "0.7.5" description = "Profile and monitor your ML data pipeline end-to-end" authors = ["WhyLabs.ai "] license = "Apache-2.0" diff --git a/src/whylogs/_version.py b/src/whylogs/_version.py index c89b1dadab..6c383684e9 100644 --- a/src/whylogs/_version.py +++ b/src/whylogs/_version.py @@ -1,3 +1,3 @@ """WhyLabs version number.""" -__version__ = "0.7.4" +__version__ = "0.7.5"