Skip to content

Commit f145abb

Browse files
Merge branch 'master' into powershell-daily-patch
2 parents 9c724a6 + 6a94e98 commit f145abb

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Formula/powershell-preview.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ class PowershellPreview < Formula
1010
desc "Formula to install PowerShell Preview"
1111
homepage "https://github.com/powershell/powershell"
1212

13-
@arm64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.5/powershell-7.4.0-preview.5-osx-arm64.tar.gz"
14-
@x64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.5/powershell-7.4.0-preview.5-osx-x64.tar.gz"
15-
@arm64sha256 = "d06992959fa2a7b1d2a424b9a4013b835ed5b90d78f03fd89420c0f27f369e9d"
16-
@x64sha256 = "730e8bed661f6bf29ae62c4d33ee272a1516c8d18d112af70ddcd35c4ed791ec"
13+
@arm64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.6/powershell-7.4.0-preview.6-osx-arm64.tar.gz"
14+
@x64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.4.0-preview.6/powershell-7.4.0-preview.6-osx-x64.tar.gz"
15+
@arm64sha256 = "edbe32089cbfb60892fc63afd269e1726dbda6ac607c99972388ed2bbef4e86d"
16+
@x64sha256 = "2bceebc628740264383ee5774c22c3df311d12d4de5755bb345ab734381a91fe"
1717

1818
# We do not specify `version "..."` as 'brew audit' will complain - see https://github.com/Homebrew/legacy-homebrew/issues/32540
1919
if Hardware::CPU.intel?
@@ -26,7 +26,7 @@ class PowershellPreview < Formula
2626
sha256 @arm64sha256
2727
end
2828

29-
version "7.4.0-preview.5"
29+
version "7.4.0-preview.6"
3030
version_scheme 1
3131

3232
livecheck do
@@ -60,7 +60,7 @@ def caveats
6060
end
6161

6262
test do
63-
assert_equal "7.4.0-preview.5",
63+
assert_equal "7.4.0-preview.6",
6464
shell_output("#{bin}/pwsh-preview -c '$psversiontable.psversion.tostring()'").strip
6565
end
6666
end

Formula/powershell.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ class Powershell < Formula
1010
desc "Formula to install PowerShell"
1111
homepage "https://github.com/powershell/powershell"
1212

13-
@arm64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-arm64.tar.gz"
14-
@x64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.3.7/powershell-7.3.7-osx-x64.tar.gz"
15-
@arm64sha256 = "29206c630dfaf5f5114a6a03fd8c999bd08b1086e10d1d76991a75c4b089e167"
16-
@x64sha256 = "fba732e0f2e9b77651eee8b71fdac08370b7f6456bc8fb6a1391caccca416b6e"
13+
@arm64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-arm64.tar.gz"
14+
@x64url = "https://github.com/PowerShell/PowerShell/releases/download/v7.3.8/powershell-7.3.8-osx-x64.tar.gz"
15+
@arm64sha256 = "d05c93b7eb67de6a6be8bc42de842f9942cd3bcf89a7baac8c84917537ac0822"
16+
@x64sha256 = "4ecfa717ab4f4197d880902f3ed8a3bd80464ab8399b109e3446b45fbe3f8383"
1717

1818
# We do not specify `version "..."` as 'brew audit' will complain - see https://github.com/Homebrew/legacy-homebrew/issues/32540
1919
if Hardware::CPU.intel?
@@ -26,7 +26,7 @@ class Powershell < Formula
2626
sha256 @arm64sha256
2727
end
2828

29-
version "7.3.7"
29+
version "7.3.8"
3030
version_scheme 1
3131

3232
# .NET Core 3.1 requires High Sierra - https://docs.microsoft.com/en-us/dotnet/core/install/dependencies?pivots=os-macos&tabs=netcore31
@@ -56,7 +56,7 @@ def caveats
5656
end
5757

5858
test do
59-
assert_equal "7.3.7",
59+
assert_equal "7.3.8",
6060
shell_output("#{bin}/pwsh -c '$psversiontable.psversion.tostring()'").strip
6161
end
6262
end

0 commit comments

Comments
 (0)