diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf8e3c08..c4801a569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [2.2.3] - 2023-07-13 +### Added +- Support post classification via OpenAI Embeddings in the Classic Editor (props [@phpbits](https://github.com/phpbits), [@dkotter](https://github.com/dkotter) via [#515](https://github.com/10up/classifai/pull/515)). +- Support Text-to-Speech functionality in the Classic Editor (props [@dkotter](https://github.com/dkotter), [@iamdharmesh](https://github.com/iamdharmesh) via [#518](https://github.com/10up/classifai/pull/518)). +- Custom `WP-CLI` command, `transcribe_audio`, to generate audio transcriptions in bulk (props [@dkotter](https://github.com/dkotter), [@Sidsector9](https://github.com/Sidsector9) via [#514](https://github.com/10up/classifai/pull/514)). +- Custom `WP-CLI` command, `generate_excerpt`, to generate excerpts in bulk (props [@dkotter](https://github.com/dkotter), [@iamdharmesh](https://github.com/iamdharmesh) via [#516](https://github.com/10up/classifai/pull/516)). +- Custom `WP-CLI` command, `embeddings`, to classify posts via OpenAI Embeddings in bulk (props [@phpbits](https://github.com/phpbits), [@dkotter](https://github.com/dkotter) via [#521](https://github.com/10up/classifai/pull/521)). +- Ability to generate excerpts in bulk using the `Bulk actions` dropdown (props [@dkotter](https://github.com/dkotter), [@Sidsector9](https://github.com/Sidsector9) via [#523](https://github.com/10up/classifai/pull/523)). +- Ability to generate excerpts on an individual item from the All Posts screen (props [@dkotter](https://github.com/dkotter), [@Sidsector9](https://github.com/Sidsector9) via [#523](https://github.com/10up/classifai/pull/523)). +- New filter, `classifai_pre_render_post_audio_controls`, that provides ability to override Text-to-Speech audio player controls markup (props [@joshuaabenazer](https://github.com/joshuaabenazer), [@dkotter](https://github.com/dkotter) via [#528](https://github.com/10up/classifai/pull/528)). +- Provide sample copy that can be added to a site's Privacy Policy, letting site visitors know AI tools are in use (props [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#529](https://github.com/10up/classifai/pull/529)). + +### Changed +- Add singular labels when a single image is selected for generation (props [@jamesmorrison](https://github.com/jamesmorrison), [@dkotter](https://github.com/dkotter) via [#482](https://github.com/10up/classifai/pull/482)). + +### Fixed +- Ensure we don't throw any JS errors in our image generation file (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#522](https://github.com/10up/classifai/pull/522)). +- Update Text-to-Speech helper text (props [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#519](https://github.com/10up/classifai/pull/519)). + ## [2.2.2] - 2023-06-28 ### Added - Support for generating post titles in the Classic Editor using OpenAI's ChatGPT API (props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter) via [#506](https://github.com/10up/classifai/pull/506)). @@ -370,6 +389,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial closed source release [Unreleased]: https://github.com/10up/classifai/compare/trunk...develop +[2.2.3]: https://github.com/10up/classifai/compare/2.2.2...2.2.3 [2.2.2]: https://github.com/10up/classifai/compare/2.2.1...2.2.2 [2.2.1]: https://github.com/10up/classifai/compare/2.2.0...2.2.1 [2.2.0]: https://github.com/10up/classifai/compare/2.1.0...2.2.0 diff --git a/classifai.php b/classifai.php index 168acdfee..db6c1d15f 100644 --- a/classifai.php +++ b/classifai.php @@ -4,7 +4,7 @@ * Plugin URI: https://github.com/10up/classifai * Update URI: https://classifaiplugin.com * Description: Enhance your WordPress content with Artificial Intelligence and Machine Learning services. - * Version: 2.2.3-dev + * Version: 2.2.3 * Requires at least: 5.7 * Requires PHP: 7.4 * Author: 10up diff --git a/config.php b/config.php index e4e20d990..136df4a7f 100644 --- a/config.php +++ b/config.php @@ -4,7 +4,7 @@ * declared here instead of a Class. */ -$plugin_version = '2.2.2'; +$plugin_version = '2.2.3'; if ( file_exists( __DIR__ . '/.commit' ) ) { $plugin_version .= '-' . file_get_contents( __DIR__ . '/.commit' ); diff --git a/package-lock.json b/package-lock.json index 9d17d4c2a..82239a513 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "classifai", - "version": "2.2.2", + "version": "2.2.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "classifai", - "version": "2.2.2", + "version": "2.2.3", "license": "GPLv2", "dependencies": { "@wordpress/icons": "^9.26.0", diff --git a/package.json b/package.json index 2a268dd3d..c49a2b769 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "classifai", - "version": "2.2.2", + "version": "2.2.3", "license": "GPLv2", "repository": "https://github.com/10up/classifai/", "description": "Enhance your WordPress content with Artificial Intelligence and Machine Learning services.", diff --git a/readme.txt b/readme.txt index be0ae8e7c..b960f70a8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: AI, Artifical Intelligence, ML, Machine Learning, Microsoft A Requires at least: 5.7 Tested up to: 6.2 Requires PHP: 7.4 -Stable tag: 2.2.2 +Stable tag: 2.2.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html