Skip to content

Commit

Permalink
Bump version 0.0.1 -> 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
justincdavis committed Jul 13, 2024
1 parent 0801e67 commit 26cefb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
project = "remotescript"
copyright = "2023, Justin Davis"
author = "Justin Davis"
version = "0.0.1"
version = "0.0.2"

assert version == remotescript.__version__ # Make sure version is consistent

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "remotescript"
version = "0.0.1"
version = "0.0.2"
authors = [
{name="Justin Davis", email="[email protected]"},
]
Expand Down Expand Up @@ -71,7 +71,7 @@ dev = [
]

[tool.bumpver]
current_version = "0.0.1"
current_version = "0.0.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/remotescript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def set_log_level(level: str) -> None:
_log.warning(f"Invalid log level: {level}. Using default log level: WARNING")

__author__ = "Justin Davis"
__version__ = "0.0.1"
__version__ = "0.0.2"

from . import _core, _imports, _utils
from ._core import check_bash, run_script
Expand Down

0 comments on commit 26cefb0

Please sign in to comment.