Skip to content

gitversion 6.1.0 #200579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Formula/g/gitversion.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Gitversion < Formula

Check warning on line 1 in Formula/g/gitversion.rb

View workflow job for this annotation

GitHub Actions / macOS 14-x86_64

No bottle built for gitversion!

gitversion has unbottled dependencies, so a bottle will not be built.
desc "Easy semantic versioning for projects using Git"
homepage "https://gitversion.net"
url "https://github.com/GitTools/GitVersion/archive/refs/tags/6.0.5.tar.gz"
sha256 "621b46427db8947fa9a2ff04d0fcc4d00d0dd0ce05e248eb8d7bbc18e4ba29a7"
url "https://github.com/GitTools/GitVersion/archive/refs/tags/6.1.0.tar.gz"
sha256 "c4791cf3f3820606735e5cbb0bdb6bc1b2db6eedad485bab7d7ebef989228a94"
license "MIT"

bottle do
Expand All @@ -13,13 +13,13 @@
sha256 cellar: :any_skip_relocation, x86_64_linux: "cc5389bd40a2e8e7ca02acb9704b5ec0d69b51421939baee10b53e48a1f6be7f"
end

depends_on "dotnet@8"
depends_on "dotnet"

def install
ENV["DOTNET_CLI_TELEMETRY_OPTOUT"] = "1"
ENV["DOTNET_SYSTEM_GLOBALIZATION_INVARIANT"] = "1"

dotnet = Formula["dotnet@8"]
dotnet = Formula["dotnet"]

args = %W[
--configuration Release
Expand Down
Loading