mirror of https://github.com/jdx/mise
chore: release 2024.9.9 (#2642)
This commit is contained in:
parent
46574fe049
commit
4181b289b8
27
CHANGELOG.md
27
CHANGELOG.md
|
@ -1,5 +1,32 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2024.9.9](https://github.com/jdx/mise/compare/v2024.9.8..v2024.9.9) - 2024-09-25
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- added nodejs to alpine build by [@jdx](https://github.com/jdx) in [550f64c](https://github.com/jdx/mise/commit/550f64cb9c0377e4102be24486491a5b9d7947f3)
|
||||||
|
- bug with exec on windows by [@jdx](https://github.com/jdx) in [#2648](https://github.com/jdx/mise/pull/2648)
|
||||||
|
- only show hints once per execution by [@jdx](https://github.com/jdx) in [#2647](https://github.com/jdx/mise/pull/2647)
|
||||||
|
- task args regression by [@jdx](https://github.com/jdx) in [#2651](https://github.com/jdx/mise/pull/2651)
|
||||||
|
- use correct xdg paths on windows by [@jdx](https://github.com/jdx) in [#2653](https://github.com/jdx/mise/pull/2653)
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- added windows e2e tests by [@jdx](https://github.com/jdx) in [#2643](https://github.com/jdx/mise/pull/2643)
|
||||||
|
- added windows e2e tests by [@jdx](https://github.com/jdx) in [#2645](https://github.com/jdx/mise/pull/2645)
|
||||||
|
- reset by [@jdx](https://github.com/jdx) in [57d0223](https://github.com/jdx/mise/commit/57d0223ab2dfa731088f1634d0d12a6edd8dd8a6)
|
||||||
|
- fix mise cache in CI by [@jdx](https://github.com/jdx) in [#2649](https://github.com/jdx/mise/pull/2649)
|
||||||
|
- allow specifying full e2e test names by [@jdx](https://github.com/jdx) in [#2650](https://github.com/jdx/mise/pull/2650)
|
||||||
|
- split windows into windows-unit and windows-e2e by [@jdx](https://github.com/jdx) in [#2652](https://github.com/jdx/mise/pull/2652)
|
||||||
|
|
||||||
|
### 🔍 Other Changes
|
||||||
|
|
||||||
|
- **(docs)** fix `arch()` template doc by [@cwegener](https://github.com/cwegener) in [#2644](https://github.com/jdx/mise/pull/2644)
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
|
||||||
|
* @cwegener made their first contribution in [#2644](https://github.com/jdx/mise/pull/2644)
|
||||||
|
|
||||||
## [2024.9.8](https://github.com/jdx/mise/compare/v2024.9.7..v2024.9.8) - 2024-09-25
|
## [2024.9.8](https://github.com/jdx/mise/compare/v2024.9.7..v2024.9.8) - 2024-09-25
|
||||||
|
|
||||||
### 🚀 Features
|
### 🚀 Features
|
||||||
|
|
|
@ -1967,7 +1967,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2024.9.8"
|
version = "2024.9.9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -2791,9 +2791,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "redox_syscall"
|
name = "redox_syscall"
|
||||||
version = "0.5.5"
|
version = "0.5.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "62871f2d65009c0256aed1b9cfeeb8ac272833c404e13d53d400cd0dad7a2ac0"
|
checksum = "355ae415ccd3a04315d3f8246e86d67689ea74d88d915576e1589a351062a13b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
]
|
]
|
||||||
|
@ -4619,9 +4619,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "winnow"
|
name = "winnow"
|
||||||
version = "0.6.19"
|
version = "0.6.20"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c52ac009d615e79296318c1bcce2d422aaca15ad08515e344feeda07df67a587"
|
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"memchr",
|
"memchr",
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mise"
|
name = "mise"
|
||||||
version = "2024.9.8"
|
version = "2024.9.9"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "The front-end to your dev env"
|
description = "The front-end to your dev env"
|
||||||
authors = ["Jeff Dickey (@jdx)"]
|
authors = ["Jeff Dickey (@jdx)"]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "mise";
|
pname = "mise";
|
||||||
version = "2024.9.8";
|
version = "2024.9.9";
|
||||||
|
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.ie \n(.g .ds Aq \(aq
|
.ie \n(.g .ds Aq \(aq
|
||||||
.el .ds Aq '
|
.el .ds Aq '
|
||||||
.TH mise 1 "mise 2024.9.8"
|
.TH mise 1 "mise 2024.9.9"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mise \- The front\-end to your dev env
|
mise \- The front\-end to your dev env
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -195,6 +195,6 @@ Examples:
|
||||||
$ mise settings Show settings in use
|
$ mise settings Show settings in use
|
||||||
$ mise settings set color 0 Disable color by modifying global config file
|
$ mise settings set color 0 Disable color by modifying global config file
|
||||||
.SH VERSION
|
.SH VERSION
|
||||||
v2024.9.8
|
v2024.9.9
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
Jeff Dickey <@jdx>
|
Jeff Dickey <@jdx>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: The front-end to your dev env
|
Summary: The front-end to your dev env
|
||||||
Name: mise
|
Name: mise
|
||||||
Version: 2024.9.8
|
Version: 2024.9.9
|
||||||
Release: 1
|
Release: 1
|
||||||
URL: https://github.com/jdx/mise/
|
URL: https://github.com/jdx/mise/
|
||||||
Group: System
|
Group: System
|
||||||
|
|
Loading…
Reference in New Issue