Skip to content

Commit

Permalink
fix(module): 更新版本 5.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
abgox committed Jan 10, 2025
1 parent ff56ed3 commit d0cf056
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 4 deletions.
7 changes: 7 additions & 0 deletions module/CHANGELOG-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<a href="./CHANGELOG-CN.md">简体中文</a>
</p>

## 5.3.2 (2025/1/10)

- 优化了补全过滤。
-`$PSCompletions` 中添加了部分属性供 `hooks` 使用,以提升解析速度。
- 修复了后台作业可能导致补全报错的问题。
- 其他修复与优化。

## 5.3.1 (2025/1/5)

- 修复了当选项补全已使用,在下次补全时没有被过滤掉的问题。
Expand Down
19 changes: 19 additions & 0 deletions module/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
[
{
"version": "5.3.2",
"info": {
"zh-CN": [
"更新(2025/1/10)\n",
"- 优化了补全过滤。\n",
"- 在 $PSCompletions 中添加了部分属性供 hooks 使用,以提升解析速度。\n",
"- 修复了后台作业可能导致补全报错的问题。\n",
"- 其他修复与优化。\n"
],
"en-US": [
"Update(2025/1/10)\n",
"- Optimize completion filtering.\n",
"- Add some properties in $PSCompletions for hooks to use to improve parsing speed.\n",
"- Fix an issue where background jobs could cause completion errors.\n",
"- Other fixes and optimizations.\n"
]
}
},
{
"version": "5.3.1",
"info": {
Expand Down
9 changes: 8 additions & 1 deletion module/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<p align="center">
<a href="./CHANGELOG-CN.md">简体中文</a>|
<a href="./CHANGELOG-CN.md">简体中文</a> |
<a href="./CHANGELOG.md">English</a>
</p>

## 5.3.2 (2025/1/10)

- Optimize completion filtering.
- Add some properties in `$PSCompletions` for `hooks` to use to improve parsing speed.
- Fix an issue where background jobs could cause completion errors.
- Other fixes and optimizations.

## 5.3.1 (2025/1/5)

- Fix an issue where when option completion had been used, it wasn't filtered out on the next completion.
Expand Down
2 changes: 1 addition & 1 deletion module/PSCompletions/PSCompletions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@{
RootModule = 'PSCompletions.psm1'

ModuleVersion = '5.3.1'
ModuleVersion = '5.3.2'

GUID = '00929632-527d-4dab-a5b3-21197faccd05'

Expand Down
2 changes: 1 addition & 1 deletion module/PSCompletions/core/init.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using namespace System.Management.Automation
$_ = Split-Path $PSScriptRoot -Parent
New-Variable -Name PSCompletions -Value @{
version = '5.3.1'
version = '5.3.2'
path = @{
root = $_
completions = Join-Path $_ 'completions'
Expand Down
2 changes: 1 addition & 1 deletion module/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.1
5.3.2

0 comments on commit d0cf056

Please sign in to comment.