diff --git a/README.md b/README.md index 1ab6f0b..b086a7c 100644 --- a/README.md +++ b/README.md @@ -31,5 +31,8 @@ A segment. For more details, see the function and method docstrings. ## Changelog +### Version 0.1.1 +- Bug fix: `__init__.py` tried to import from `_core` instead of `._core`. + ### Version 0.1.0 - First release \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5f30255..639d222 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "jeb-server-utils" -version = "0.1.0" +version = "0.1.1" description = "The utilities for the jeb server" dependencies = ["config-parser", "jeb-utils"] license = "Apache-2.0" \ No newline at end of file diff --git a/src/jeb_server_utils/__init__.py b/src/jeb_server_utils/__init__.py index cbe2817..d101882 100644 --- a/src/jeb_server_utils/__init__.py +++ b/src/jeb_server_utils/__init__.py @@ -16,8 +16,8 @@ The utilities for the jeb server ''' -from _core import * -from _core import __all__ as _core__all__ +from ._core import * +from ._core import __all__ as _core__all__ __all__ = [ *_core__all__