From 783298c79d00df760cc83d971f6630273e289b88 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Wed, 29 May 2024 23:30:26 -0500 Subject: [PATCH] chore: release 2024.5.26 (#2220) --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- default.nix | 2 +- man/man1/mise.1 | 4 ++-- packaging/rpm/mise.spec | 2 +- scripts/build-tarball.sh | 2 +- 8 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4e0f7f74..4893db0d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2024.5.26](https://github.com/jdx/mise/compare/v2024.5.25..v2024.5.26) - 2024-05-30 + +### ๐Ÿ› Bug Fixes + +- normalize remote urls by [@jdx](https://github.com/jdx) in [#2221](https://github.com/jdx/mise/pull/2221) + +### ๐Ÿงช Testing + +- added reset() to more tests by [@jdx](https://github.com/jdx) in [f9f65b3](https://github.com/jdx/mise/commit/f9f65b39214c9341bf44ad694c6659b6a17fdf9c) + +### ๐Ÿ” Other Changes + +- remove armv6 targets by [@jdx](https://github.com/jdx) in [90752f4](https://github.com/jdx/mise/commit/90752f4f08a8ca4095fb464edd79a7aed2b07e54) + ## [2024.5.25](https://github.com/jdx/mise/compare/v2024.5.24..v2024.5.25) - 2024-05-30 ### ๐Ÿš€ Features diff --git a/Cargo.lock b/Cargo.lock index ec2df9db5..1b198bd24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1636,7 +1636,7 @@ dependencies = [ [[package]] name = "mise" -version = "2024.5.25" +version = "2024.5.26" dependencies = [ "assert_cmd", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index bc1f7aedf..cdd8df54c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mise" -version = "2024.5.25" +version = "2024.5.26" edition = "2021" description = "The front-end to your dev env" authors = ["Jeff Dickey (@jdx)"] diff --git a/README.md b/README.md index 1467d635d..1385a48bb 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Install mise (other methods [here](https://mise.jdx.dev/getting-started.html)): ```sh-session $ curl https://mise.run | sh $ ~/.local/bin/mise --version -mise 2024.5.25 +mise 2024.5.26 ``` or install a specific a version: @@ -44,7 +44,7 @@ or install a specific a version: ```sh-session $ curl https://mise.run | MISE_VERSION=v2024.5.16 sh $ ~/.local/bin/mise --version -mise 2024.5.25 +mise 2024.5.26 ``` Hook mise into your shell (pick the right one for your shell): diff --git a/default.nix b/default.nix index b98f7c759..e8de51d6c 100644 --- a/default.nix +++ b/default.nix @@ -2,7 +2,7 @@ rustPlatform.buildRustPackage { pname = "mise"; - version = "2024.5.25"; + version = "2024.5.26"; src = lib.cleanSource ./.; diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 08f6b1944..dda71d3f6 100644 --- a/man/man1/mise.1 +++ b/man/man1/mise.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH mise 1 "mise 2024.5.25" +.TH mise 1 "mise 2024.5.26" .SH NAME mise \- The front\-end to your dev env .SH SYNOPSIS @@ -192,6 +192,6 @@ Examples: $ mise settings Show settings in use $ mise settings set color 0 Disable color by modifying global config file .SH VERSION -v2024.5.25 +v2024.5.26 .SH AUTHORS Jeff Dickey <@jdx> diff --git a/packaging/rpm/mise.spec b/packaging/rpm/mise.spec index a968676d3..9b3c89968 100644 --- a/packaging/rpm/mise.spec +++ b/packaging/rpm/mise.spec @@ -1,6 +1,6 @@ Summary: The front-end to your dev env Name: mise -Version: 2024.5.25 +Version: 2024.5.26 Release: 1 URL: https://github.com/jdx/mise/ Group: System diff --git a/scripts/build-tarball.sh b/scripts/build-tarball.sh index c89860922..b2a656d4b 100755 --- a/scripts/build-tarball.sh +++ b/scripts/build-tarball.sh @@ -30,7 +30,7 @@ get_arch() { aarch64-*) echo "arm64" ;; - arm-*) + arm*) echo "armv7" ;; x86_64-*)