Skip to content

Commit

Permalink
Bump version to 0.9.22-dev after release
Browse files Browse the repository at this point in the history
  • Loading branch information
SurajBDeore committed Dec 17, 2024
1 parent 8c6098b commit 887c8b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## Changelog


### 0.9.22-dev



### 0.9.21

* `lobster-codebeamer` now supports query string along with query ID, query string (cbQL) can be passed
Expand Down
4 changes: 2 additions & 2 deletions lobster/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import sys
from argparse import ArgumentParser

VERSION_TUPLE = (0, 9, 21)
VERSION_SUFFIX = ""
VERSION_TUPLE = (0, 9, 22)
VERSION_SUFFIX = "dev"

LOBSTER_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + (
"-%s" % VERSION_SUFFIX if VERSION_SUFFIX else ""
Expand Down

0 comments on commit 887c8b0

Please sign in to comment.