diff --git a/changelog.txt b/changelog.txt index 11af488..8dc0809 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ # Changelog +## 1.0-beta-1.9 + + - Removed the `completions` and `edit` endpoints which have been deprecated by OpenAI. Feeds using these endpoints will be automatically converted to the `chat/completions` endpoint. + ## 1.0-beta-1.8 - Added `gpt-4-1106-preview` as an available model for the Chat Completions endpoint. diff --git a/gravityforms-openai.php b/gravityforms-openai.php index c1883ba..a53dab1 100644 --- a/gravityforms-openai.php +++ b/gravityforms-openai.php @@ -3,7 +3,7 @@ * Plugin Name: Gravity Forms OpenAI * Description: Pair the magic of OpenAI's robust models with Gravity Forms' flexibility. * Plugin URI: https://gravitywiz.com/gravity-forms-openai/ - * Version: 1.0-beta-1.8 + * Version: 1.0-beta-1.9 * Author: Gravity Wiz * Author URI: https://gravitywiz.com/ * License: GPL2 @@ -17,7 +17,7 @@ * @link https://github.com/gravitywiz/gravityforms-openai */ -define( 'GWIZ_GF_OPENAI_VERSION', '1.0-beta-1.8' ); +define( 'GWIZ_GF_OPENAI_VERSION', '1.0-beta-1.9' ); defined( 'ABSPATH' ) || die();