Skip to content

Commit 775ee17

Browse files
committed
Raise version to 0.0.7
1 parent c1ef593 commit 775ee17

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
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.7] - 2023-06-26
8+
79
- Add support for Kuttl test suites and improve CI ([#4])
810

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# beku
22

3-
Version: 0.0.7-dev
3+
Version: 0.0.7
44

55
## Installation
66

@@ -24,7 +24,7 @@ Fast Kuttl tests expander for Stackable integration tests.
2424

2525
Update the version in:
2626

27-
* `pyptoject.toml`
27+
* `pyproject.toml`
2828
* `version.py`
2929
* `README.md`
3030

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.7-dev"
3+
version = "0.0.7"
44
authors = [
55
{ name = "Razvan Mihai", email = "razvan.mihai@stackable.tech" }
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, '7-dev')
2+
__version_info__ = (0, 0, '7')
33
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)