Skip to content

Commit

Permalink
fix(module): update version to 4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
abgox committed Aug 9, 2024
1 parent 3888f48 commit 7722db0
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 4 deletions.
4 changes: 4 additions & 0 deletions module/CHANGELOG-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<a href="./CHANGELOG-CN.md">简体中文</a>
</p>

## 4.2.2 (2024/8/9)

- 当使用 `psc update *` 更新补全后,不再立即检查更新

## 4.2.1 (2024/8/9)

- 修复新版本迁移时的一个小问题
Expand Down
4 changes: 4 additions & 0 deletions module/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<a href="./CHANGELOG.md">English</a>
</p>

## 4.2.2 (2024/8/9)

- No longer checks for updates immediately after using `psc update *` update completion.

## 4.2.1 (2024/8/9)

- Fix a small issue when migrating to the new version.
Expand Down
2 changes: 1 addition & 1 deletion module/PSCompletions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

RootModule = 'PSCompletions.psm1'

ModuleVersion = '4.2.1'
ModuleVersion = '4.2.2'

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

Expand Down
1 change: 0 additions & 1 deletion module/PSCompletions.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ function PSCompletions {
}
}
}
check_update
}
}
function _search {
Expand Down
2 changes: 1 addition & 1 deletion module/core/init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using namespace System.Management.Automation
New-Variable -Name PSCompletions -Value @{} -Option Constant

# 模块版本
$PSCompletions.version = '4.2.1'
$PSCompletions.version = '4.2.2'
$PSCompletions.path = @{}
$PSCompletions.path.root = Split-Path $PSScriptRoot -Parent
$PSCompletions.path.completions = Join-Path $PSCompletions.path.root 'completions'
Expand Down
10 changes: 10 additions & 0 deletions module/log.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{
"4.2.2": {
"zh-CN": [
"修复(2024/8/9)\n",
" - 当使用 <@Magenta>psc update *<@Blue> 更新补全后,不再立即检查更新\n"
],
"en-US": [
"Fix(2024/8/9)\n",
" - No longer checks for updates immediately after using <@Magenta>psc update *<@Blue> update completion.\n"
]
},
"4.2.1": {
"zh-CN": ["修复(2024/8/9)\n", " - 修复新版本迁移时的一个小问题\n"],
"en-US": [
Expand Down
2 changes: 1 addition & 1 deletion module/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.1
4.2.2

0 comments on commit 7722db0

Please sign in to comment.