Skip to content

Commit c372a09

Browse files
committed
Raise version to 0.0.8
1 parent cf75b04 commit c372a09

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.0.8] - 2023-07-01
8+
79
- Bugfix: apply multiple patches sequentially to a single test
810

911
[#6]: https://github.com/stackabletech/beku.py/pull/6)

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# beku
22

3-
Version: 0.0.8-dev
3+
Version: 0.0.8
44

55
## Installation
66

7+
We recommend to use [pipx](https://pypa.github.io/pipx/):
8+
9+
pipx install beku-stackabletech
10+
11+
But you can also use `pip`:
12+
13+
# from PyPI
14+
pip install beku-stackabletech
15+
# from GitHub
716
pip install git+https://github.com/stackabletech/beku.py.git@master
817

918
## Usage

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "beku-stackabletech"
3-
version = "0.0.8-dev"
3+
version = "0.0.8"
44
authors = [
55
{ name = "Razvan Mihai", email = "[email protected]" }
66
]

src/beku/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version."""
2-
__version_info__ = (0, 0, '8-dev')
2+
__version_info__ = (0, 0, '8')
33
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)