diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..dcf5533 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,48 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 2023-07-21 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`moxplatform` - `v0.1.17`](#moxplatform---v0117) + - [`moxplatform_android` - `v0.1.17`](#moxplatform_android---v0117) + - [`moxplatform_platform_interface` - `v0.1.17`](#moxplatform_platform_interface---v0117) + +--- + +#### `moxplatform` - `v0.1.17` + + - **FIX**: Fix typecasting issue. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + +#### `moxplatform_android` - `v0.1.17` + + - **FIX**: Fix typecasting issue. + - **FEAT**: Improve code quality of the cryptography. + - **FEAT**: Rewrite recordSentMessage in Kotlin. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + - **FEAT**: Also hash the file on encryption and decryption. + +#### `moxplatform_platform_interface` - `v0.1.17` + + - **FIX**: Fix typecasting issue. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + - **FEAT**: Also hash the file on encryption and decryption. + diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 9612177..785438c 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -32,10 +32,10 @@ dependencies: moxplatform: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: 0.1.15 + version: 0.1.17 moxplatform_android: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: 0.1.15 + version: 0.1.17 file_picker: 5.2.0+1 diff --git a/packages/moxplatform/CHANGELOG.md b/packages/moxplatform/CHANGELOG.md index b5ac1d6..9f7ff5e 100644 --- a/packages/moxplatform/CHANGELOG.md +++ b/packages/moxplatform/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.1.17 + + - **FIX**: Fix typecasting issue. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + ## 0.1.11+2 - Update a dependency to the latest release. diff --git a/packages/moxplatform/pubspec.yaml b/packages/moxplatform/pubspec.yaml index a35ac5c..f182bc2 100644 --- a/packages/moxplatform/pubspec.yaml +++ b/packages/moxplatform/pubspec.yaml @@ -1,6 +1,6 @@ name: moxplatform description: Moxxy platform-specific code -version: 0.1.16 +version: 0.1.17 publish_to: https://git.polynom.me/api/packages/Moxxy/pub homepage: https://codeberg.org/moxxy/moxplatform @@ -26,10 +26,10 @@ dependencies: moxplatform_android: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: ^0.1.16 + version: ^0.1.17 moxplatform_platform_interface: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: ^0.1.16 + version: ^0.1.17 dev_dependencies: flutter_test: diff --git a/packages/moxplatform_android/CHANGELOG.md b/packages/moxplatform_android/CHANGELOG.md index 8d59637..351eaca 100644 --- a/packages/moxplatform_android/CHANGELOG.md +++ b/packages/moxplatform_android/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.1.17 + + - **FIX**: Fix typecasting issue. + - **FEAT**: Improve code quality of the cryptography. + - **FEAT**: Rewrite recordSentMessage in Kotlin. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + - **FEAT**: Also hash the file on encryption and decryption. + ## 0.1.11+2 - **REFACTOR**: Make version constraints looser. diff --git a/packages/moxplatform_android/pubspec.yaml b/packages/moxplatform_android/pubspec.yaml index 1e2d01f..71c3f02 100644 --- a/packages/moxplatform_android/pubspec.yaml +++ b/packages/moxplatform_android/pubspec.yaml @@ -1,6 +1,6 @@ name: moxplatform_android description: Android implementation of moxplatform -version: 0.1.16 +version: 0.1.17 homepage: https://codeberg.org/moxxy/moxplatform publish_to: https://git.polynom.me/api/packages/Moxxy/pub @@ -30,10 +30,10 @@ dependencies: moxplatform: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: ^0.1.16 + version: ^0.1.17 moxplatform_platform_interface: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: ^0.1.16 + version: ^0.1.17 plugin_platform_interface: ^2.1.2 uuid: ^3.0.5 diff --git a/packages/moxplatform_platform_interface/CHANGELOG.md b/packages/moxplatform_platform_interface/CHANGELOG.md index f2ed45a..451d302 100644 --- a/packages/moxplatform_platform_interface/CHANGELOG.md +++ b/packages/moxplatform_platform_interface/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.1.17 + + - **FIX**: Fix typecasting issue. + - **FEAT**: Add an API for creating direct share shortcuts. + - **FEAT**: Migrate to moxlib 0.2.0. + - **FEAT**: I forgot to bump dependency versions. + - **FEAT**: Also hash the file on encryption and decryption. + ## 0.1.11+2 - **REFACTOR**: Make version constraints looser. diff --git a/packages/moxplatform_platform_interface/pubspec.yaml b/packages/moxplatform_platform_interface/pubspec.yaml index 4a83382..4c0ba7b 100644 --- a/packages/moxplatform_platform_interface/pubspec.yaml +++ b/packages/moxplatform_platform_interface/pubspec.yaml @@ -1,6 +1,6 @@ name: moxplatform_platform_interface description: A common platform interface for the my_plugin plugin. -version: 0.1.16 +version: 0.1.17 homepage: https://codeberg.org/moxxy/moxplatform publish_to: https://git.polynom.me/api/packages/Moxxy/pub @@ -17,7 +17,7 @@ dependencies: version: ^0.2.0 moxplatform: hosted: https://git.polynom.me/api/packages/Moxxy/pub - version: ^0.1.16 + version: ^0.1.17 plugin_platform_interface: ^2.1.2