From ae39602f78f9e8d1bc6dafee94df5920f02f4660 Mon Sep 17 00:00:00 2001 From: Paul Brown <67805647+pb-dod@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:08:48 -0600 Subject: [PATCH] bump asdf 0.9.0 -> 0.14.0 (#103) I just noticed we're on a pretty old version of asdf, and I've been running 0.14.0 for a while now: ``` $ asdf --version v0.14.0 ``` I was also able to re-run `ih-setup -v install -f core asdf` successfully while on v0.14.0. This PR bumps us from 0.9.0 -> 0.14.0 for new installs. [Changelog](https://github.com/asdf-vm/asdf/blob/master/CHANGELOG.md) --- VERSION | 2 +- formula/ih-core.rb | 2 +- lib/core/asdf/step.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index fbde3d5..abf5cfc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.62 +0.1.63 diff --git a/formula/ih-core.rb b/formula/ih-core.rb index f5a613a..4785dcb 100644 --- a/formula/ih-core.rb +++ b/formula/ih-core.rb @@ -1,5 +1,5 @@ class IhCore < Formula - VERSION="0.1.62" + VERSION="0.1.63" desc "Brew formula for installing core tools used at Included Health engineering." homepage "https://github.com/ConsultingMD/homebrew-ih-public" license "CC BY-NC-ND 4.0" diff --git a/lib/core/asdf/step.sh b/lib/core/asdf/step.sh index f908b4d..e5e38d7 100644 --- a/lib/core/asdf/step.sh +++ b/lib/core/asdf/step.sh @@ -80,7 +80,7 @@ function ih::setup::core.asdf::install() { if ! command -v asdf; then ih::log::info "Cloning asdf into $HOME/.asdf" - git clone https://github.com/asdf-vm/asdf.git "$HOME"/.asdf --branch v0.9.0 + git clone https://github.com/asdf-vm/asdf.git "$HOME"/.asdf --branch v0.14.1 # If this is set it messes up asdf initialization unset ASDF_DIR # shellcheck disable=SC1091