diff --git a/pyproject.toml b/pyproject.toml index 41c98f3..32aab1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vanilla-installer" -version = "v1.0.0b1" +version = "v0.1.0" description = "An installer of Fabulously Optimized for the vanilla launcher." authors = [ "osfanbuff63 ", diff --git a/vanilla_installer/__init__.py b/vanilla_installer/__init__.py index 9756875..b31401f 100644 --- a/vanilla_installer/__init__.py +++ b/vanilla_installer/__init__.py @@ -1,5 +1,5 @@ # Copyright (C) Fabulously Optimized 2022 # Licensed under the MIT License. The full license text can be found at https://github.com/Fabulously-Optimized/vanilla-installer/blob/main/LICENSE.md. """An installer of Fabulously Optimized for the vanilla launcher.""" -__version__ = "v1.0.0b1" +__version__ = "v0.1.0" __license__ = "MIT License" diff --git a/vanilla_installer/main.py b/vanilla_installer/main.py index fd10eca..e505aa3 100644 --- a/vanilla_installer/main.py +++ b/vanilla_installer/main.py @@ -252,7 +252,7 @@ def fo_to_base64(png_dir: str = ".") -> str: def get_version() -> str: - __version__ = "v1.0.0b1" + __version__ = "v0.1.0" return __version__