Skip to content

Commit

Permalink
bump version 4.4
Browse files Browse the repository at this point in the history
fix a bug
  • Loading branch information
kakkun61 committed May 21, 2021
1 parent 33bca82 commit 343e1e8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log

## 4.4

*2021.05.19*

Fix a bug that `Install-Ghc` adds an unexpected “)”.

## 4.3

*2021.05.19*
Expand Down
6 changes: 3 additions & 3 deletions ghcups.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'ghcups.psm1'

# このモジュールのバージョン番号です。
ModuleVersion = '4.3'
ModuleVersion = '4.4'

# サポートされている PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -98,7 +98,7 @@ PrivateData = @{
Tags = @('Haskell', 'GHC', 'PSEdition_Core', 'Windows')

# このモジュールのライセンスの URL。
LicenseUri = 'https://github.com/kakkun61/ghcups/blob/4.3/LICENSE'
LicenseUri = 'https://github.com/kakkun61/ghcups/blob/4.4/LICENSE'

# このプロジェクトのメイン Web サイトの URL。
ProjectUri = 'https://github.com/kakkun61/ghcups'
Expand All @@ -107,7 +107,7 @@ PrivateData = @{
# IconUri = ''

# このモジュールの ReleaseNotes
ReleaseNotes = 'https://github.com/kakkun61/ghcups/blob/4.3/ChangeLog.md'
ReleaseNotes = 'https://github.com/kakkun61/ghcups/blob/4.4/ChangeLog.md'

ExternalModuleDependencies = @('Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')

Expand Down
2 changes: 1 addition & 1 deletion ghcups.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function Install-Ghc {
break
}
if ($meta -is [hashtable] -and $meta['version'] -eq $Version) {
Move-Item -Path "$(Get-GhcupsInstall)\$($meta['directory'])" -Destination "$(Get-GhcupsInstall)\ghc-$Version)"
Move-Item -Path "$(Get-GhcupsInstall)\$($meta['directory'])" -Destination "$(Get-GhcupsInstall)\ghc-$Version"
break
}
}
Expand Down

0 comments on commit 343e1e8

Please sign in to comment.