From 43fe801e739041b2a2d049e6bb41d7c7a46eee43 Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Mon, 23 Oct 2023 16:02:17 +0800 Subject: [PATCH] chore(intellij): bump intellij plugin version to 1.0.0. (#618) --- clients/intellij/CHANGELOG.md | 9 +++++++++ clients/intellij/build.gradle.kts | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/clients/intellij/CHANGELOG.md b/clients/intellij/CHANGELOG.md index 93840302b572..9dd70a73b0fd 100644 --- a/clients/intellij/CHANGELOG.md +++ b/clients/intellij/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.0.0 + +### Changes: + +- Added support for completion replacement. If a completion will replace the suffix characters after the cursor, these characters will be hidden. +- Added auto-closing character check to improve inline completion experience. This improvement ensures proper handling of scenarios involving missing or duplicate closing characters. +- Optimized completion caching for better efficiency, especially when a completion is partially accepted. +- Updated the config.toml template file by removing deprecated options. + ## 0.6.0 ### Features: diff --git a/clients/intellij/build.gradle.kts b/clients/intellij/build.gradle.kts index e4eac8a7777d..1c0277612ec2 100644 --- a/clients/intellij/build.gradle.kts +++ b/clients/intellij/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } group = "com.tabbyml" -version = "1.0.0-dev" +version = "1.0.0" repositories { mavenCentral()