Skip to content

Commit 0c180ae

Browse files
authored
Merge pull request Homebrew#206322 from Homebrew/bump-convco-0.6.2
convco 0.6.2
2 parents ee95adf + 87f7e17 commit 0c180ae

File tree

1 file changed

+9
-59
lines changed

1 file changed

+9
-59
lines changed

Formula/c/convco.rb

Lines changed: 9 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
class Convco < Formula
22
desc "Conventional commits, changelog, versioning, validation"
33
homepage "https://convco.github.io"
4+
url "https://github.com/convco/convco/archive/refs/tags/v0.6.2.tar.gz"
5+
sha256 "6f8e58f8572a785e32d287cad80d174303a5db5abc4ce0cf50022e05125549dd"
46
license "MIT"
5-
revision 2
6-
head "https://github.com/convco/convco.git", branch: "master"
7-
8-
stable do
9-
url "https://github.com/convco/convco/archive/refs/tags/v0.6.1.tar.gz"
10-
sha256 "ed68341e065f76f22b6d93ff3686836a812f6a031dc7ee00bed7e048b0da4294"
11-
12-
# libgit2 1.9 patch, upstream pr ref, https://github.com/convco/convco/pull/299
13-
patch :DATA
14-
end
7+
head "https://github.com/convco/convco.git", branch: "main"
158

169
bottle do
17-
sha256 cellar: :any, arm64_sequoia: "fdd240ce031cde57493cc4840d1a28094d00c6bb809865992dffff04c049ef38"
18-
sha256 cellar: :any, arm64_sonoma: "1501858eeb3eb0f287004aeba9fb10682f61721a65fccd01d0a82666caabf1b1"
19-
sha256 cellar: :any, arm64_ventura: "10ef832098713702847732101646118cfdbe5f9651751369ca799328f1bca2d4"
20-
sha256 cellar: :any, sonoma: "855873ef6a533b75c898d5a8d7c323e8bfbe3f204b2b84e929e17a37ac73f146"
21-
sha256 cellar: :any, ventura: "fafefae755cafaf4606a1bb90b1fd0aedad9ed84fee875d68e58e87ea1b6c04e"
22-
sha256 cellar: :any_skip_relocation, x86_64_linux: "53887102d0b72408953eb08c56e2ac11074b2c6db15d4d292f3996d0073388d7"
10+
sha256 cellar: :any, arm64_sequoia: "e1c093220b014473d3a149c15ae6b832e5bd00a29f53e4536e7e61c5f5d23fc7"
11+
sha256 cellar: :any, arm64_sonoma: "8735477bfe61112d9b04356962c578a92ce2b446cb05086932e9ef8d2c452a28"
12+
sha256 cellar: :any, arm64_ventura: "e66f77d70c4c03b8a9057b0bb1625bc299a53f6ff009df8360a337ec1295cc76"
13+
sha256 cellar: :any, sonoma: "e43a535594de8583f7313f689d34110c44d8470848187d3996f1c3ec1ff91d0f"
14+
sha256 cellar: :any, ventura: "cb1e5727f7cfee8c3a2c83e916cf870a99ee440d238727cc3d89c8d062eedc69"
15+
sha256 cellar: :any_skip_relocation, x86_64_linux: "889fe4c5139b8dd815723ed30fad7566fdee06967247cfae99bf5604ec394991"
2316
end
2417

2518
depends_on "pkgconf" => :build
@@ -51,46 +44,3 @@ def install
5144
assert linkage_with_libgit2, "No linkage with libgit2! Cargo is likely using a vendored version."
5245
end
5346
end
54-
55-
__END__
56-
diff --git a/Cargo.lock b/Cargo.lock
57-
index cbdd452..4bc0524 100644
58-
--- a/Cargo.lock
59-
+++ b/Cargo.lock
60-
@@ -366,9 +366,9 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
61-
62-
[[package]]
63-
name = "git2"
64-
-version = "0.19.0"
65-
+version = "0.20.0"
66-
source = "registry+https://github.com/rust-lang/crates.io-index"
67-
-checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724"
68-
+checksum = "3fda788993cc341f69012feba8bf45c0ba4f3291fcc08e214b4d5a7332d88aff"
69-
dependencies = [
70-
"bitflags 2.4.1",
71-
"libc",
72-
@@ -452,9 +452,9 @@ checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
73-
74-
[[package]]
75-
name = "libgit2-sys"
76-
-version = "0.17.0+1.8.1"
77-
+version = "0.18.0+1.9.0"
78-
source = "registry+https://github.com/rust-lang/crates.io-index"
79-
-checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224"
80-
+checksum = "e1a117465e7e1597e8febea8bb0c410f1c7fb93b1e1cddf34363f8390367ffec"
81-
dependencies = [
82-
"cc",
83-
"libc",
84-
diff --git a/Cargo.toml b/Cargo.toml
85-
index 7b8f7e9..7edb023 100644
86-
--- a/Cargo.toml
87-
+++ b/Cargo.toml
88-
@@ -23,7 +23,7 @@ anyhow = { version = "1.0.89", features = ["backtrace"] }
89-
clap = { version = "4.5.20", features = ["derive", "env"] }
90-
ctrlc = "3.4.5"
91-
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
92-
-git2 = { version = "0.19.0", default-features = false }
93-
+git2 = { version = "0.20.0", default-features = false }
94-
handlebars = "6.1.0"
95-
regex = "1.11.0"
96-
semver = "1.0.23"

0 commit comments

Comments
 (0)