From 0da4a6079d0657ae5eca854bc58612df99c0ecc0 Mon Sep 17 00:00:00 2001 From: Baptiste Jonglez Date: Tue, 9 May 2023 17:19:07 +0200 Subject: [PATCH] Release 8.0.0a3 --- docs/contribute/index.rst | 2 ++ enos/utils/constants.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/contribute/index.rst b/docs/contribute/index.rst index 757ea02..2ec3b6b 100644 --- a/docs/contribute/index.rst +++ b/docs/contribute/index.rst @@ -63,6 +63,8 @@ As a pre-requisite, you will have to generate a token on pypi and configure poet Before making a new release, make sure that tests and pep8 are happy, and write some appropriate changelog entries. +First, update the version in ``enos/utils/constants.py`` and ``pyproject.toml``. + Then, git tag, build a wheel with poetry, and upload it to pypi: .. code-block:: bash diff --git a/enos/utils/constants.py b/enos/utils/constants.py index 981cb48..e9ccc0d 100644 --- a/enos/utils/constants.py +++ b/enos/utils/constants.py @@ -43,4 +43,4 @@ FAKE_NEUTRON_EXTERNAL_INTERFACE = 'nei' # ENOS Setup -VERSION = '8.0.0a1' +VERSION = '8.0.0a3' diff --git a/pyproject.toml b/pyproject.toml index bbac3d4..af4a6f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "enos" -version = "8.0.0a1" +version = "8.0.0a3" description = "Experimental eNvironment for OpenStack" authors = ["Didier Iscovery "] license = "GPL-3.0-or-later"