diff --git a/pyproject.toml b/pyproject.toml index e4f30cc..30f192c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "vsrealesrgan" -version = "4.0.1" +version = "4.1.0" description = "Real-ESRGAN function for VapourSynth" readme = "README.md" requires-python = ">=3.10" diff --git a/vsrealesrgan/__init__.py b/vsrealesrgan/__init__.py index 0b839c1..48a2bda 100644 --- a/vsrealesrgan/__init__.py +++ b/vsrealesrgan/__init__.py @@ -18,7 +18,7 @@ from .rrdbnet_arch import RRDBNet from .srvgg_arch import SRVGGNetCompact -__version__ = "4.0.1" +__version__ = "4.1.0" model_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "models")