From 222d599b65d03c00abb90927b2838d7dd05f9862 Mon Sep 17 00:00:00 2001 From: Austin Morton Date: Mon, 28 Nov 2022 19:28:19 +0000 Subject: [PATCH] Release 0.0.14 --- RELEASE_NOTES.md | 3 +++ ozy/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 019be16..b45890d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,8 @@ # ozy release notes +## 0.0.14 +* Add support for ozy self-update + ## 0.0.13 * changed CondaInstaller to work with micromamba * added empty `__init__.py` files in test directory tree to appease vscode diff --git a/ozy/__init__.py b/ozy/__init__.py index 51913a7..e9ccf40 100644 --- a/ozy/__init__.py +++ b/ozy/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.13' +__version__ = '0.0.14' import logging _LOGGER = logging.getLogger(__name__)