diff --git a/.gitattributes b/.gitattributes index 5958b9090..94526af19 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,6 +1,7 @@ # Directories .git export-ignore .github export-ignore +.husky export-ignore .vscode export-ignore bin export-ignore docs export-ignore @@ -19,6 +20,7 @@ tests export-ignore .eslintignore export-ignore .gitattributes export-ignore .gitignore export-ignore +.nvmrc export-ignore .wp-env.json export-ignore CHANGELOG.md export-ignore classifai.zip export-ignore diff --git a/CHANGELOG.md b/CHANGELOG.md index 6939fa6c3..642cdfd6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [2.2.1] - 2023-06-08 +### Added +- Ability to generate images in the Classic Editor (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#471](https://github.com/10up/classifai/pull/471)). +- Ability to trigger Text-to-Speech generation in bulk (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#477](https://github.com/10up/classifai/pull/477)). +- Ability to trigger Text-to-Speech generation on an individual item from the post lists screen (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#477](https://github.com/10up/classifai/pull/477)). +- Custom `WP-CLI` command,`text_to_speech`, that can be used to generate Text-to-Speech data in bulk (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#478](https://github.com/10up/classifai/pull/478)). + +### Changed +- Tweak the prompt that is used to generate excerpts (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#468](https://github.com/10up/classifai/pull/468)). +- Update the Dependency Review GitHub Action (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#464](https://github.com/10up/classifai/pull/464)). + +### Fixed +- Resolve formatting issues in javascript files (props [@ravinderk](https://github.com/ravinderk), [@dkotter](https://github.com/dkotter) via [#461](https://github.com/10up/classifai/pull/461)). +- Correctly add terms to posts generated by Watson content classifiers (props [@ravinderk](https://github.com/ravinderk), [@iamdharmesh](https://github.com/iamdharmesh), [@dkotter](https://github.com/dkotter) via [#462](https://github.com/10up/classifai/pull/462)). +- Ensure we properly output data on the Site Health screen without causing errors (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#466](https://github.com/10up/classifai/pull/466)). +- Ensure the prompt we send to DALLĀ·E never exceeds 1000 characters (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#467](https://github.com/10up/classifai/pull/467)). +- Ensure quotes aren't added around generated excerpts (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#468](https://github.com/10up/classifai/pull/468)). +- Remove extra slash from asset URLs (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#469](https://github.com/10up/classifai/pull/469)). +- Add proper docblocks to all custom hooks to ensure those show properly in our documentation site (props [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#470](https://github.com/10up/classifai/pull/470)). + +### Security +- Bumped various dependencies (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk) via [#476](https://github.com/10up/classifai/pull/476)). +- Bump `atob` from 1.1.3 to 2.1.2 and `svg-react-loader` from 0.4.0 to 0.4.6 (props [@dependabot[bot]](https://github.com/apps/dependabot) via [#481](https://github.com/10up/classifai/pull/481)). + ## [2.2.0] - 2023-05-22 ### Added - Convert text content into audio and output a "read-to-me" feature on the front-end to play this audio using Microsoft Azure's Text to Speech API (props [@Sidsector9](https://github.com/Sidsector9), [@iamdharmesh](https://github.com/iamdharmesh), [@ravinderk](https://github.com/ravinderk), [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter), [@pixeldevsio](https://github.com/pixeldevsio) via [#403](https://github.com/10up/classifai/pull/403)). @@ -332,6 +356,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.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 [2.1.0]: https://github.com/10up/classifai/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/10up/classifai/compare/1.8.1...2.0.0 diff --git a/classifai.php b/classifai.php index 82fe380fe..83637ffa5 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.1-dev + * Version: 2.2.1 * Requires at least: 5.7 * Requires PHP: 7.4 * Author: 10up diff --git a/config.php b/config.php index 85d1ebb91..31759e718 100644 --- a/config.php +++ b/config.php @@ -4,7 +4,7 @@ * declared here instead of a Class. */ -$plugin_version = '2.2.0'; +$plugin_version = '2.2.1'; if ( file_exists( __DIR__ . '/.commit' ) ) { $plugin_version .= '-' . file_get_contents( __DIR__ . '/.commit' ); diff --git a/package-lock.json b/package-lock.json index ac8e43c43..052fc9909 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "classifai", - "version": "2.2.0", + "version": "2.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "classifai", - "version": "2.2.0", + "version": "2.2.1", "license": "GPLv2", "dependencies": { "@wordpress/icons": "^9.26.0", diff --git a/package.json b/package.json index 5b5851cbb..c8b1538f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "classifai", - "version": "2.2.0", + "version": "2.2.1", "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 a5885e742..46c49d387 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.0 +Stable tag: 2.2.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html