aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--pyproject.toml2
-rw-r--r--src/hydrorollcore/__init__.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index b74d6ef2..ea50dac1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "HydroRollCore"
-version = "0.1.1"
+version = "0.1.2"
description = "The Core of HydroRoll, The Loader of your rules packages."
authors = [{ name = "简律纯", email = "i@jyunko.cn" }]
dependencies = [
diff --git a/src/hydrorollcore/__init__.py b/src/hydrorollcore/__init__.py
index 48fa8a09..13f83e86 100644
--- a/src/hydrorollcore/__init__.py
+++ b/src/hydrorollcore/__init__.py
@@ -2,6 +2,5 @@ from HydroRollCore.cli import Cli
from HydroRollCore.config import ConfigModel
from HydroRollCore.rule import Rule, RuleLoadType
from HydroRollCore.core import Core
-__version__ = "0.1.1"
__all__ = ['Core', 'Rule', 'ConfigModel', 'RuleLoadType', 'Cli']