diff --git a/ChangeLog.md b/ChangeLog.md index aff8f40..bec4581 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,11 @@ # Change log +## 4.6 + +*2021.08.19* + +Support GHC 8.10.6. + ## 4.5 *2021.06.07* diff --git a/ghcups.psd1 b/ghcups.psd1 index a3a2e8b..24414cf 100644 --- a/ghcups.psd1 +++ b/ghcups.psd1 @@ -12,7 +12,7 @@ RootModule = 'ghcups.psm1' # このモジュールのバージョン番号です。 -ModuleVersion = '4.5' +ModuleVersion = '4.6' # サポートされている PSEditions # CompatiblePSEditions = @() @@ -98,7 +98,7 @@ PrivateData = @{ Tags = @('Haskell', 'GHC', 'PSEdition_Core', 'Windows') # このモジュールのライセンスの URL。 - LicenseUri = 'https://github.com/kakkun61/ghcups/blob/4.5/LICENSE' + LicenseUri = 'https://github.com/kakkun61/ghcups/blob/4.6/LICENSE' # このプロジェクトのメイン Web サイトの URL。 ProjectUri = 'https://github.com/kakkun61/ghcups' @@ -107,7 +107,7 @@ PrivateData = @{ # IconUri = '' # このモジュールの ReleaseNotes - ReleaseNotes = 'https://github.com/kakkun61/ghcups/blob/4.5/ChangeLog.md' + ReleaseNotes = 'https://github.com/kakkun61/ghcups/blob/4.6/ChangeLog.md' ExternalModuleDependencies = @('Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility') diff --git a/psakefile.ps1 b/psakefile.ps1 index 2cf5eae..2f2aa4c 100644 --- a/psakefile.ps1 +++ b/psakefile.ps1 @@ -12,7 +12,7 @@ Task Lint { Task Publish { Publish-Module ` - -Name ..\ghcups ` + -Name .\ghcups.psd1 ` -NuGetApiKey (Get-Content .psg.key) ` -Exclude '.github\**', '.vscode\**', '.psg.key', 'debug.log', 'Dockerfile' } \ No newline at end of file diff --git a/version.yaml b/version.yaml index b178605..e18d7c6 100644 --- a/version.yaml +++ b/version.yaml @@ -2,6 +2,7 @@ ghc: x86_64: - version: '9.0.1' directory: ghc-9.0.1-x86_64-unknown-mingw32 + - '8.10.6' - '8.10.5' - '8.10.4' - '8.10.3'