Skip to content

Commit

Permalink
Release 8.0.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
jonglezb committed May 15, 2023
1 parent 29d2e11 commit 0d784ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/contribute/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +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``.
First, update the version in ``enos/utils/constants.py`` and ``pyproject.toml``,
and commit the result.

Then, git tag, build a wheel with poetry, and upload it to pypi:

Expand All @@ -72,6 +73,7 @@ Then, git tag, build a wheel with poetry, and upload it to pypi:
$ git tag v8.0.0a2
$ poetry build
$ poetry publish
$ git push
$ git push --tags
Finally, create a release on github and copy-paste the changelog entries.
Expand Down
2 changes: 1 addition & 1 deletion enos/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
FAKE_NEUTRON_EXTERNAL_INTERFACE = 'nei'

# ENOS Setup
VERSION = '8.0.0a3'
VERSION = '8.0.0a4'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "enos"
version = "8.0.0a3"
version = "8.0.0a4"
description = "Experimental eNvironment for OpenStack"
authors = ["Didier Iscovery <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down

0 comments on commit 0d784ff

Please sign in to comment.