From 04340c039964afb18385b539042f98f31219d99a Mon Sep 17 00:00:00 2001 From: Tony Worm Date: Tue, 25 Oct 2022 08:09:18 -0400 Subject: [PATCH] update version --- .hof/shadow/AdhocGen/hof.rb | 12 ++++++------ hof.cue | 8 ++++---- hof.rb | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.hof/shadow/AdhocGen/hof.rb b/.hof/shadow/AdhocGen/hof.rb index 34b24e8..d57929d 100644 --- a/.hof/shadow/AdhocGen/hof.rb +++ b/.hof/shadow/AdhocGen/hof.rb @@ -1,10 +1,10 @@ class Hof < Formula - desc "Flexible data modeling & code generation system" + desc "A flexible data modeling & code generation system" homepage "https://hofstadter.io/" - version "0.6.7-rc.2" + version "0.6.7" url "https://github.com/hofstadter-io/hof.git", - tag: "v0.6.7-rc.2", - revision: "521e084f36adf29a9e71636a05f02904c481ef89" + tag: "v0.6.7", + revision: "5f6770b9628cd46a4caa24594e052dd715ac2dca" license "BSD-3-Clause" head "https://github.com/hofstadter-io/hof.git", branch: "_dev" @@ -18,14 +18,14 @@ def install ldflags = %W[ -s -w -X github.com/hofstadter-io/hof/cmd/hof/verinfo.Version=#{version} -X github.com/hofstadter-io/hof/cmd/hof/verinfo.Commit=#{Utils.git_head} -X github.com/hofstadter-io/hof/cmd/hof/verinfo.BuildDate=#{time.iso8601} -X github.com/hofstadter-io/hof/cmd/hof/verinfo.GoVersion=#{Formula["go"].version} -X github.com/hofstadter-io/hof/cmd/hof/verinfo.BuildOS=#{os} -X github.com/hofstadter-io/hof/cmd/hof/verinfo.BuildArch=#{arch} ] ENV["CGO_ENABLED"] = "0" - ENV["HOF_TELEMETRY_DISABLED"] = 1 + ENV["HOF_TELEMETRY_DISABLED"] = "1" system "go", "build", *std_go_args(ldflags: ldflags), "./cmd/hof" generate_completions_from_executable(bin/"hof", "completion") end test do - ENV["HOF_TELEMETRY_DISABLED"] = 1 + ENV["HOF_TELEMETRY_DISABLED"] = "1" assert_match "v#{version}", shell_output("#{bin}/hof version") end end diff --git a/hof.cue b/hof.cue index 7436b1d..795088e 100644 --- a/hof.cue +++ b/hof.cue @@ -3,10 +3,10 @@ package main import "strings" name: "hof" -version: "0.6.7-rc.2" -tag: "v0.6.7-rc.2" -commit: "521e084f36adf29a9e71636a05f02904c481ef89" -desc: "Flexible data modeling & code generation system" +version: "0.6.7" +tag: "v0.6.7" +commit: "5f6770b9628cd46a4caa24594e052dd715ac2dca" +desc: "A flexible data modeling & code generation system" homepage: "https://hofstadter.io/" repo: "github.com/hofstadter-io/hof" url: "https://\(repo).git" diff --git a/hof.rb b/hof.rb index f845f44..f34b392 100644 --- a/hof.rb +++ b/hof.rb @@ -1,10 +1,10 @@ class Hof < Formula - desc "Flexible data modeling & code generation system" + desc "A flexible data modeling & code generation system" homepage "https://hofstadter.io/" - version "0.6.7-rc.2" + version "0.6.7" url "https://github.com/hofstadter-io/hof.git", - tag: "v0.6.7-rc.2", - revision: "521e084f36adf29a9e71636a05f02904c481ef89" + tag: "v0.6.7", + revision: "5f6770b9628cd46a4caa24594e052dd715ac2dca" license "BSD-3-Clause" head "https://github.com/hofstadter-io/hof.git", branch: "_dev"