From 0d736c1d59eb4ec2832b4eaa9ee8942fc9d10513 Mon Sep 17 00:00:00 2001 From: Takagi Tasuku Date: Sun, 12 Feb 2023 13:16:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20pip=E3=81=AE=E4=BE=8B=E3=81=8C=E4=B8=8D?= =?UTF-8?q?=E9=81=A9=E5=88=87=E3=81=AA=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- pyproject.toml | 2 +- src/i21y/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d06875f..3a05762 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It is still in beta. ## Installation Normal: `pip install i21y` YAML supported: `pip install i21y[yaml]` -Fast JSON (orjson) supported: `pip install i21y[orjson]` +Fast JSON (orjson) supported: `pip install i21y[fast-json]` ## Example ```python diff --git a/pyproject.toml b/pyproject.toml index 6cb9676..29331b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "i21y" -version = "0.1.0b1" +version = "0.1.0b2" description = "The library for i18n support." authors = ["Takagi Tasuku "] license = "MIT" diff --git a/src/i21y/__init__.py b/src/i21y/__init__.py index 456c5a3..6c00328 100644 --- a/src/i21y/__init__.py +++ b/src/i21y/__init__.py @@ -1,7 +1,7 @@ "tasuren - i21y" __author__ = "Takagi Tasuku" -__version__ = "0.1.0b1" +__version__ = "0.1.0b2" __all__ = ("Translator", "I21YError", "TranslationNotFound", "locale_str") from .translator import Translator