diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b2e99..574fd12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v1.0.3 (2024-07-10) + +### Chore +* chore: Remove build artifacts ([`98768ab`](https://github.com/sandialabs/shell-logger/commit/98768ab79253214e48d91dfc610afb6d7b1dc8a8)) + + These were accidentally committed in + 0cbf0dfd410dd01e84eece340ac7f42c8cf24da9. + +### Patch +* patch: Maintenance mode release ([`fcc6b4b`](https://github.com/sandialabs/shell-logger/commit/fcc6b4b08514af9d4351dd2eb7ff5e4908152ea3)) + ## v1.0.2 (2024-07-10) ### Continuous Integration diff --git a/doc/source/conf.py b/doc/source/conf.py index 73ff889..a105b90 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -18,7 +18,7 @@ "(NTESS)" ) author = "Josh Braun, David Collins, Jason M. Gates" -version = "1.0.2" +version = "1.0.3" release = version diff --git a/pyproject.toml b/pyproject.toml index ad65285..6710434 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "shell-logger-sandialabs" -version = "1.0.2" +version = "1.0.3" license = "LICENSE.md" readme = "README.md" keywords = ["shell", "logging"] diff --git a/shell_logger/__init__.py b/shell_logger/__init__.py index 8281046..a2caff0 100644 --- a/shell_logger/__init__.py +++ b/shell_logger/__init__.py @@ -9,4 +9,4 @@ from .shell_logger import ShellLogger, ShellLoggerDecoder, ShellLoggerEncoder __all__ = ["ShellLogger", "ShellLoggerDecoder", "ShellLoggerEncoder"] -__version__ = "1.0.2" +__version__ = "1.0.3"