Skip to content

Commit 47cca63

Browse files
committed
chore(release): 1.2.0
#### [Version 1.2.0](v1.1.0...v1.2.0) (2024-10-14) ### New Features - **Choose Between GPT-3.5 and GPT-4o-mini**: Users can now select between GPT-3.5 and GPT-4o-mini for their interactions. GPT-4o-mini is much cheaper and provides better results. - **Support for Rich Text in Chat Responses**: Chat responses now support rich text, allowing for enhanced results like images, links, and code snippets. - **Website URL and Sitemap Crawling for Knowledge Base**: You can now add external content to your Knowledge Base, including data from your website and HelpScout docs, using Website URL and Sitemap Crawling. - **Qdrant Integration for Improved Performance**: Users can now integrate with Qdrant to improve both performance and Knowledge Base limits. Qdrants free plan offers liberal limits suitable for most websites. ### Improvements - **PHP-tiktoken for Better Performance**: We’ve replaced js-tiktoken with php-tiktoken to significantly improve performance speed. - **Minimum PHP Version Bumped to 8.1**: We’ve updated the minimum required PHP version to 8.1 to ensure better performance and security. - Initial version.
1 parent 6c42a9a commit 47cca63

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
#### [Version 1.2.0](https://github.com/Codeinwp/hyve-lite/compare/v1.1.0...v1.2.0) (2024-10-14)
2+
3+
### New Features
4+
- **Choose Between GPT-3.5 and GPT-4o-mini**: Users can now select between GPT-3.5 and GPT-4o-mini for their interactions. GPT-4o-mini is much cheaper and provides better results.
5+
- **Support for Rich Text in Chat Responses**: Chat responses now support rich text, allowing for enhanced results like images, links, and code snippets.
6+
- **Website URL and Sitemap Crawling for Knowledge Base**: You can now add external content to your Knowledge Base, including data from your website and HelpScout docs, using Website URL and Sitemap Crawling.
7+
- **Qdrant Integration for Improved Performance**: Users can now integrate with Qdrant to improve both performance and Knowledge Base limits. Qdrants free plan offers liberal limits suitable for most websites.
8+
9+
### Improvements
10+
- **PHP-tiktoken for Better Performance**: We’ve replaced js-tiktoken with php-tiktoken to significantly improve performance speed.
11+
- **Minimum PHP Version Bumped to 8.1**: We’ve updated the minimum required PHP version to 8.1 to ensure better performance and security.
12+
- Initial version.
13+
114
#### [Version 1.1.0](https://github.com/Codeinwp/hyve-lite/compare/v1.0.0...v1.1.0) (2024-09-09)
215

316
- Initial version.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codeinwp/hyve-lite",
33
"description": "An AI support bot.",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"type": "wordpress-plugin",
66
"license": "GPL-V3",
77
"autoload": {

hyve-lite.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Hyve Lite
88
* Plugin URI: https://themeisle.com/plugins/hyve/
99
* Description: Hyve is an AI-powered chatbot that transforms your WordPress content into engaging conversations.
10-
* Version: 1.1.0
10+
* Version: 1.2.0
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-3.0+
@@ -39,7 +39,7 @@ function () {
3939
define( 'HYVE_LITE_BASEFILE', __FILE__ );
4040
define( 'HYVE_LITE_URL', plugins_url( '/', __FILE__ ) );
4141
define( 'HYVE_LITE_PATH', __DIR__ );
42-
define( 'HYVE_LITE_VERSION', '1.1.0' );
42+
define( 'HYVE_LITE_VERSION', '1.2.0' );
4343

4444
$vendor_file = HYVE_LITE_PATH . '/vendor/autoload.php';
4545

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyve-lite",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "An AI support bot.",
55
"scripts": {
66
"build": "npm-run-all build:*",

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: automation, support, chat, ai, openai
44
Requires at least: 6.2
55
Tested up to: 6.6
66
Requires PHP: 8.1
7-
Stable tag: 1.1.0
7+
Stable tag: 1.2.0
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
1010

0 commit comments

Comments
 (0)