From c0bf1dc55196b6a3b18df7a28ce9a4b64c24b8ca Mon Sep 17 00:00:00 2001 From: Takagi Tasuku Date: Sun, 12 Feb 2023 13:23:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=80=E9=83=A8=E3=80=81=E3=83=89?= =?UTF-8?q?=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=81=8C=E5=A4=89?= =?UTF-8?q?=E3=81=AA=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/i21y/__init__.py | 2 +- src/i21y/loaders/json.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 29331b9..b3de0d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "i21y" -version = "0.1.0b2" +version = "0.1.0b3" description = "The library for i18n support." authors = ["Takagi Tasuku "] license = "MIT" diff --git a/src/i21y/__init__.py b/src/i21y/__init__.py index 6c00328..8c9a835 100644 --- a/src/i21y/__init__.py +++ b/src/i21y/__init__.py @@ -1,7 +1,7 @@ "tasuren - i21y" __author__ = "Takagi Tasuku" -__version__ = "0.1.0b2" +__version__ = "0.1.0b3" __all__ = ("Translator", "I21YError", "TranslationNotFound", "locale_str") from .translator import Translator diff --git a/src/i21y/loaders/json.py b/src/i21y/loaders/json.py index 90dca8a..d1d434f 100644 --- a/src/i21y/loaders/json.py +++ b/src/i21y/loaders/json.py @@ -15,7 +15,7 @@ class Loader(FileLoader): """Loader implemented to load json files. By default, json is read using the standard module json. - But if you have ``orjson`` or ``i21y[fast_json]`` installed, json reading is done with the library called orjson. + But if you have ``orjson`` or ``i21y[fast-json]`` installed, json reading is done with the library called orjson. The arguments of constructor are same as :class:`.file_.Loader`.""" EXTENSIONS = (".json",)