diff --git a/CITATION.cff b/CITATION.cff index 5471dde..f4df7ec 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,5 +24,5 @@ keywords: - turbolence - laser communication license: Apache-2.0 -version: 0.1.3 +version: 0.1.4 license: MIT diff --git a/pyproject.toml b/pyproject.toml index a436ece..d044e7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" # https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ [project] name = "speckcn2" -version = "0.1.3" +version = "0.1.4" description = "Estimate Cn2 from Speckle patterns using machine learning" readme = "README.md" requires-python = ">=3.9" @@ -114,7 +114,7 @@ ignore_missing_imports = true [tool.bumpversion] -current_version = "0.1.3" +current_version = "0.1.4" [[tool.bumpversion.files]] filename = "src/speckcn2/__init__.py" diff --git a/src/speckcn2/__init__.py b/src/speckcn2/__init__.py index 1afbf66..6b80f2c 100644 --- a/src/speckcn2/__init__.py +++ b/src/speckcn2/__init__.py @@ -11,7 +11,7 @@ from .preprocess import prepare_data, train_test_split from .utils import setup_optimizer -__version__ = '0.1.3' +__version__ = '0.1.4' __all__ = [ 'load_config', 'prepare_data',