Skip to content

Commit

Permalink
Merge pull request #2019 from jdx/release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed May 7, 2024
2 parents 9c30786 + 695f851 commit 6bbd3d1
Show file tree
Hide file tree
Showing 10 changed files with 83 additions and 43 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [2024.5.3](https://github.com/jdx/mise/compare/v2024.5.2..v2024.5.3) - 2024-05-06

### 🚀 Features

- **(env)** supports glob patterns in `env._.file` and `env._.source` (fix #1916) by [@noirbizarre](https://github.com/noirbizarre) in [#2016](https://github.com/jdx/mise/pull/2016)
- cleanup invalid symlinks in .local/state/mise/(tracked|trusted)-configs by [@roele](https://github.com/roele) in [#2036](https://github.com/jdx/mise/pull/2036)

### 🐛 Bug Fixes

- **(plugin-update)** Handle errors from the underlying plugin updates by [@offbyone](https://github.com/offbyone) in [#2024](https://github.com/jdx/mise/pull/2024)
- backend install directory not removed if empty by [@roele](https://github.com/roele) in [#2018](https://github.com/jdx/mise/pull/2018)
- mise trust doesn't handle relative paths by [@roele](https://github.com/roele) in [#2037](https://github.com/jdx/mise/pull/2037)

### 🔍 Other Changes

- Update README.md by [@jdx](https://github.com/jdx) in [40e82be](https://github.com/jdx/mise/commit/40e82be7e187cb09d2dad1c0d8b61078c4f7cebe)
- move kachick plugins to mise-plugins by Jeff Dickey in [a41b296](https://github.com/jdx/mise/commit/a41b296d7f599de3bccfb31c71da9606fd508216)

### 📦️ Dependency Updates

- update rust crate zip to v1.1.4 by [@renovate[bot]](https://github.com/renovate[bot]) in [#2030](https://github.com/jdx/mise/pull/2030)

### New Contributors

* @noirbizarre made their first contribution in [#2016](https://github.com/jdx/mise/pull/2016)

## [2024.5.2](https://github.com/jdx/mise/compare/v2024.5.1..v2024.5.2) - 2024-05-02

### 🐛 Bug Fixes
Expand Down
74 changes: 40 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mise"
version = "2024.5.2"
version = "2024.5.3"
edition = "2021"
description = "The front-end to your dev env"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
mise 2024.5.3
```

Hook mise into your shell (pick the right one for your shell):
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

rustPlatform.buildRustPackage {
pname = "mise";
version = "2024.5.2";
version = "2024.5.3";

src = lib.cleanSource ./.;

Expand Down
6 changes: 6 additions & 0 deletions docs/cli-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,12 @@ Options:
-n, --dry-run
Do not actually delete anything
--configs
Prune only tracked and trusted configuration links that point to non-existent configurations
--tools
Prune only unused versions of tools
Examples:
$ mise prune --dry-run
Expand Down
4 changes: 2 additions & 2 deletions man/man1/mise.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.TH mise 1 "mise 2024.5.2"
.TH mise 1 "mise 2024.5.3"
.SH NAME
mise \- The front\-end to your dev env
.SH SYNOPSIS
Expand Down Expand Up @@ -186,6 +186,6 @@ Examples:
$ mise settings Show settings in use
$ mise settings set color 0 Disable color by modifying global config file
.SH VERSION
v2024.5.2
v2024.5.3
.SH AUTHORS
Jeff Dickey <@jdx>
2 changes: 2 additions & 0 deletions mise.usage.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,8 @@ as will versions only referenced on the command line (`mise exec <PLUGIN>@<VERSI
rm -rf ~/.local/share/mise/versions/node/20.0.1
"
flag "-n --dry-run" help="Do not actually delete anything"
flag "--configs" help="Prune only tracked and trusted configuration links that point to non-existent configurations"
flag "--tools" help="Prune only unused versions of tools"
arg "[PLUGIN]..." help="Prune only versions from this plugin(s)" var=true
}
cmd "reshim" help="rebuilds the shim farm" {
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/mise.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: The front-end to your dev env
Name: mise
Version: 2024.5.2
Version: 2024.5.3
Release: 1
URL: https://github.com/jdx/mise/
Group: System
Expand Down
6 changes: 3 additions & 3 deletions src/default_shorthands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
("calendarsync", "https://github.com/FeryET/asdf-calendarsync.git"),
("calicoctl", "https://github.com/TheCubicleJockey/asdf-calicoctl.git"),
("camunda-modeler", "https://github.com/barmac/asdf-camunda-modeler.git"),
("cargo-make", "https://github.com/kachick/asdf-cargo-make.git"),
("cargo-make", "https://github.com/mise-plugins/asdf-cargo-make.git"),
("carp", "https://github.com/susurri/asdf-carp.git"),
("carthage", "https://github.com/younke/asdf-carthage.git"),
("ccache", "https://github.com/asdf-community/asdf-ccache.git"),
Expand Down Expand Up @@ -779,7 +779,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
("xcresultparser", "https://github.com/MacPaw/asdf-xcresultparser.git"),
("xh", "https://github.com/NeoHsu/asdf-xh"),
("yadm", "https://github.com/particledecay/asdf-yadm.git"),
("yamlfmt", "https://github.com/kachick/asdf-yamlfmt.git"),
("yamlfmt", "https://github.com/mise-plugins/asdf-yamlfmt.git"),
("yamllint", "https://github.com/ericcornelissen/asdf-yamllint.git"),
("yamlscript", "https://github.com/FeryET/asdf-yamlscript.git"),
("yarn", "https://github.com/mise-plugins/asdf-yarn.git"),
Expand All @@ -794,7 +794,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
("zellij", "https://github.com/chessmango/asdf-zellij.git"),
("zephyr", "https://github.com/nsaunders/asdf-zephyr.git"),
("zig", "https://github.com/cheetah/asdf-zig.git"),
("zigmod", "https://github.com/kachick/asdf-zigmod.git"),
("zigmod", "https://github.com/mise-plugins/asdf-zigmod.git"),
("zola", "https://github.com/salasrod/asdf-zola.git"),
("zoxide", "https://github.com/nyrst/asdf-zoxide"),
("zprint", "https://github.com/carlduevel/asdf-zprint.git"),
Expand Down

0 comments on commit 6bbd3d1

Please sign in to comment.