diff --git a/pyproject.toml b/pyproject.toml index 1c74e27..64b4591 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" [project] name = "aiunn" -version = "0.3.0" +version = "0.4.0" description = "Finetuner for image upscaling using AIIA" readme = "README.md" requires-python = ">=3.10" diff --git a/setup.py b/setup.py index 2cc0989..f950e60 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="aiunn", - version="0.3.0", + version="0.4.0", packages=find_packages(where="src"), package_dir={"": "src"}, install_requires=[ diff --git a/src/aiunn/__init__.py b/src/aiunn/__init__.py index 0f64cd2..2b68267 100644 --- a/src/aiunn/__init__.py +++ b/src/aiunn/__init__.py @@ -4,4 +4,4 @@ from .upsampler.aiunn import aiuNN from .upsampler.config import aiuNNConfig from .inference.inference import aiuNNInference -__version__ = "0.3.0" \ No newline at end of file +__version__ = "0.4.0" \ No newline at end of file