Skip to content

Commit

Permalink
Prepare 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrybakov committed May 28, 2024
1 parent 4e48729 commit 3783b22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/radtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

__version__ = "0.9.0"
__doclink__ = "rad-tools.org"
__git_hash__ = "undefined"
__release_date__ = "undefined"
__git_hash__ = "4e487292b088301abd378efd3a0d941f8be71df2"
__release_date__ = "28 May 2024"

from . import (
constants,
Expand Down
2 changes: 1 addition & 1 deletion tools/prepare-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def update_init(repo: git.Repo, version, root_dir: str):
good_message = {False: "not updated", True: "updated"}

# Read __init__.py
init_file_path = os.path.join(root_dir, "radtools", "__init__.py")
init_file_path = os.path.join(root_dir, "src", "radtools", "__init__.py")
init_file = open(init_file_path, "r")
init_file_content = init_file.readlines()
init_file.close()
Expand Down

0 comments on commit 3783b22

Please sign in to comment.