Skip to content

Commit

Permalink
Version changed to v0.3.1 (#187)
Browse files Browse the repository at this point in the history
* Removed parallelization limit.

* Release test.

* Uncomment the publishing step.

* Version changed to 0.2.0b0

* Removed the tag check.

* Workflow optimizations.

* Modified the version test.

* Modified the version test.

* Changed the development status classifier

* Version changed to v0.2.3a1

* Version changed to v0.2.3

* Version 0.2.4 released.

* Version changed to v0.2.5"

* Version changed to v0.2.6

* Version changed to v0.2.7

* Version changed to v0.2.8

* Version changed to v0.3.1

* devpi pipeline fix

* Try starting the devpi-server in the background.

* Redirect devpi logs to a file and output them in case of failure.
  • Loading branch information
ognjen-j committed May 28, 2021
1 parent de315a2 commit 12a65ee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-prep.yml
Expand Up @@ -42,8 +42,8 @@ jobs:
if: success()
run: |
pip install "poetry>=1.0.2" devpi-server devpi "pluggy<1,>=0.12.0"
devpi-server --serverdir=/tmp/devpi --init
devpi-server --serverdir=/tmp/devpi --start
devpi-init --serverdir=/tmp/devpi
devpi-server --serverdir=/tmp/devpi >> /tmp/devpi.log 2>&1 &
scripts/wait-for-it.sh localhost:3141 -t 60
devpi use http://localhost:3141
devpi login root --password=
Expand All @@ -53,6 +53,10 @@ jobs:
poetry config repositories.devpi http://localhost:3141/root/stable/
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }}
- name: Output logs on failure
if: failure()
run: |
cat /tmp/devpi.log
- name: Publish to devpi
if: success()
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### Version 0.3.1
* Added the `delete topics` command that enables deleting more than one topic
* Modified the existing `delete topic` command to accept only a single topic entry
* Refactored the topic deletion logic to improve performance
### Version 0.3.0
* Remove pykafka dependency
* Include a partial fix for #32 (topics are now displayed, output is still not optimal)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "esque"
version = "0.3.0"
version = "0.3.1"
description="esque - an operational kafka tool."
authors = ["real.digital <opensource@real-digital.de>"]
license = "MIT"
Expand Down

0 comments on commit 12a65ee

Please sign in to comment.