Skip to content

Commit 51bd9a6

Browse files
committed
chore(release): 1.2.1
##### [Version 1.2.1](v1.2.0...v1.2.1) (2024-11-07) ### New Features - **Background Knowledge Base Updates**: Your Knowledge Base now updates in the background, automatically processing updated posts with the help of a cron job. - **URL Crawl Update Option**: Added an option to update existing content from URL Crawls, ensuring your Knowledge Base stays current. ### Bug Fixes - **Chat Timing Display**: Chatbot timing now displays accurately in a 24-hour format. - **Internationalization Compatibility**: Frontend strings are now fully i18n-compatible, making Hyve easier to localize.
1 parent e2a437a commit 51bd9a6

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
##### [Version 1.2.1](https://github.com/Codeinwp/hyve-lite/compare/v1.2.0...v1.2.1) (2024-11-07)
2+
3+
### New Features
4+
- **Background Knowledge Base Updates**: Your Knowledge Base now updates in the background, automatically processing updated posts with the help of a cron job.
5+
- **URL Crawl Update Option**: Added an option to update existing content from URL Crawls, ensuring your Knowledge Base stays current.
6+
7+
### Bug Fixes
8+
- **Chat Timing Display**: Chatbot timing now displays accurately in a 24-hour format.
9+
- **Internationalization Compatibility**: Frontend strings are now fully i18n-compatible, making Hyve easier to localize.
10+
111
#### [Version 1.2.0](https://github.com/Codeinwp/hyve-lite/compare/v1.1.0...v1.2.0) (2024-10-14)
212

313
### New Features

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.2.0",
4+
"version": "1.2.1",
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.2.0
10+
* Version: 1.2.1
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.2.0' );
42+
define( 'HYVE_LITE_VERSION', '1.2.1' );
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.2.0",
3+
"version": "1.2.1",
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.2.0
7+
Stable tag: 1.2.1
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
1010

0 commit comments

Comments
 (0)