Skip to content

Commit 2894b23

Browse files
authored
Merge pull request #103 from Bugsterapp/franco/fix-test-cases
fix: test cases enum
2 parents 8800a45 + bd7c0b6 commit 2894b23

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to Bugster CLI will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.23]
9+
10+
- Patch update command.
11+
812
## [0.3.22]
913

1014
### Changed
@@ -155,4 +159,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
155159
[0.3.6]: https://github.com/Bugsterapp/bugster-cli/compare/v0.3.0...v0.3.6
156160
[0.3.0]: https://github.com/Bugsterapp/bugster-cli/compare/v0.2.0...v0.3.0
157161
[0.2.0]: https://github.com/Bugsterapp/bugster-cli/compare/v0.1.0...v0.2.0
158-
[0.1.0]: https://github.com/Bugsterapp/bugster-cli/releases/tag/v0.1.0
162+
[0.1.0]: https://github.com/Bugsterapp/bugster-cli/releases/tag/v0.1.0

bugster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Bugster CLI - A command-line interface tool for managing test cases.
33
"""
44

5-
__version__ = "0.3.22"
5+
__version__ = "0.3.23"

bugster/libs/utils/enums.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
class BugsterApiPath(str, Enum):
55
"""Bugster API paths."""
66

7+
TEST_CASES = "/api/v1/test-cases"
78
TEST_CASES_NEW = "/api/v1/test-cases/new"
89
GENERATE_INIT = "/generate/init"
910
GENERATE_CHECK_RESULTS = "/generate/check-results"

0 commit comments

Comments
 (0)