From 455a2a04afb8338f6ebe18c167c9996784a50550 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:07:19 +0000 Subject: [PATCH] Bump version to: 0.1.4 --- CITATION.cff | 2 +- pyproject.toml | 4 ++-- src/speckcn2/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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',