Skip to content

Commit

Permalink
feat: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Nov 2, 2022
1 parent a827b1f commit d2eb6d7
Showing 4 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -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 ---------------------------------------------------
2 changes: 1 addition & 1 deletion mipac/__init__.py
Original file line number Diff line number Diff line change
@@ -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__)

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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',

0 comments on commit d2eb6d7

Please sign in to comment.