diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f8639c5..0df7b4c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added +- todo + +## [0.2.0] - 2022-11-02 + +### Added + - added `Modeler` class - added `IReactionRequired` class - added `IAds` class @@ -30,7 +36,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - added `ChatGroup` class - added `ChatMessage` class - added `IChatGroup` class - +- NoteActionsクラスに `get` `fetch` メソッドを追加 +- データをキャッシュするためのツールをutils.pyに追加 +- orjsonが使用者の環境にある場合はjsonではなくorjsonを使用するようになりました ### Changed - `Dict[Any, Any]` のような構文を typing モジュールを使わない `dict[any, any]` に変更 @@ -56,6 +64,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - `RawFile` クラスを削除しました。 今後は `File` クラスをご利用ください - `RawChat`, `Chat` クラスを削除しました。 今後は `ChatMessage` クラスをご利用ください - `ChatPayload` クラスを削除しました。 今後は `IChatMessage` クラスをご利用ください +- `get_note` メソッドを削除しました。今後は `get` もしくは `fetch` メソッドをご利用ください +- `aiocache` を使用しないようになりました + +### Fixed + +- 一部の型が正しくないのを修正しました ## [0.1.0] - 2022-05-28 diff --git a/docs/conf.py b/docs/conf.py index 313668fc..24717222 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = 'MiPAC' copyright = '2022, yupix' author = 'yupix' -release = '0.1.0' +release = '0.2.0' sys.path.append(os.path.abspath('extensions')) # -- General configuration --------------------------------------------------- diff --git a/mipac/__init__.py b/mipac/__init__.py index 26f1f12c..5be116e1 100644 --- a/mipac/__init__.py +++ b/mipac/__init__.py @@ -3,7 +3,7 @@ __license__ = 'MIT' __copyright__ = 'Copyright 2022-present yupix' __author_email__ = 'yupi0982@outlook.jp' -__version__ = '0.1.0' +__version__ = '0.2.0' __path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/setup.py b/setup.py index 1bb58fca..01f81f7a 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name='mipac', - version='0.1.0', + version='0.2.0', install_requires=requirements, url='https://github.com/yupix/mipac', author='yupix',