From f046c6cdbc22d67613938850441308a174d8fa74 Mon Sep 17 00:00:00 2001 From: Fletcher Chapin Date: Tue, 12 Mar 2024 14:42:02 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pype_schema/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pype_schema/__init__.py b/pype_schema/__init__.py index f2e452d..eabecf3 100644 --- a/pype_schema/__init__.py +++ b/pype_schema/__init__.py @@ -5,7 +5,7 @@ __email__ = "fchapin@stanford.edu" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "0.4.0" +__version__ = "0.5.0" def get_module_version(): diff --git a/setup.cfg b/setup.cfg index ea91623..92921f3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.5.0 commit = True tag = True diff --git a/setup.py b/setup.py index dde5859..e6e0371 100644 --- a/setup.py +++ b/setup.py @@ -68,6 +68,6 @@ extras_require=extra_requirements, test_suite="tests", url="https://github.com/we3lab/pype-schema", - version="0.4.0", + version="0.5.0", zip_safe=False, )