Skip to content

Commit

Permalink
Release 2024.3.10 (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
mise-en-dev authored Mar 30, 2024
1 parent a3b27ef commit 939ef9d
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 43 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

---
## [2024.3.10](https://github.com/jdx/mise/compare/v2024.3.9..v2024.3.10) - 2024-03-30

### 🐛 Bug Fixes

- use correct type for --cd by [@jdx](https://github.com/jdx) in [cf4f03e](https://github.com/jdx/mise/commit/cf4f03ed0145c5678e1ecbdb98c4426c9428d29a)

### 🚜 Refactor

- completions command by [@jdx](https://github.com/jdx) in [#1838](https://github.com/jdx/mise/pull/1838)

### 📚 Documentation

- improve CHANGELOG by [@jdx](https://github.com/jdx) in [#1839](https://github.com/jdx/mise/pull/1839)
- improve CHANGELOG by [@jdx](https://github.com/jdx) in [#1841](https://github.com/jdx/mise/pull/1841)
- remove duplicate PR labels in CHANGELOG by [@jdx](https://github.com/jdx) in [a3b27ef](https://github.com/jdx/mise/commit/a3b27efc37191f8be106345586cab08055ea476f)

---
## [2024.3.9](https://github.com/jdx/mise/compare/v2024.3.8..v2024.3.9) - 2024-03-24

Expand Down
72 changes: 36 additions & 36 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.3.9"
version = "2024.3.10"
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 @@ -40,7 +40,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.3.9
mise 2024.3.10
```

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.3.9";
version = "2024.3.10";

src = lib.cleanSource ./.;

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.3.9"
.TH mise 1 "mise 2024.3.10"
.SH NAME
mise \- The front\-end to your dev env
.SH SYNOPSIS
Expand Down Expand Up @@ -183,6 +183,6 @@ Examples:
$ mise settings Show settings in use
$ mise settings set color 0 Disable color by modifying global config file
.SH VERSION
v2024.3.9
v2024.3.10
.SH AUTHORS
Jeff Dickey <@jdx>
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.3.9
Version: 2024.3.10
Release: 1
URL: https://github.com/jdx/mise/
Group: System
Expand Down
2 changes: 1 addition & 1 deletion src/cli/args/cd_arg.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::path::PathBuf;
use clap::{Arg, ArgAction};
use std::path::PathBuf;

#[derive(Clone)]
pub struct CdArg;
Expand Down
3 changes: 3 additions & 0 deletions src/default_shorthands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
("cocoapods", "https://github.com/ronnnnn/asdf-cocoapods.git"),
("codefresh", "https://github.com/gurukulkarni/asdf-codefresh.git"),
("codeql", "https://github.com/bored-engineer/asdf-codeql.git"),
("coder", "https://github.com/mise-plugins/asdf-coder"),
("colima", "https://github.com/CrouchingMuppet/asdf-colima.git"),
("conan", "https://github.com/amrox/asdf-pyapp.git"),
("concourse", "https://github.com/mattysweeps/asdf-concourse.git"),
Expand Down Expand Up @@ -599,6 +600,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
("sentinel", "https://github.com/asdf-community/asdf-hashicorp.git"),
("serf", "https://github.com/asdf-community/asdf-hashicorp.git"),
("serverless", "https://github.com/pdemagny/asdf-serverless.git"),
("setup-envtest", "https://github.com/pmalek/mise-setup-envtest.git"),
("shell2http", "https://github.com/ORCID/asdf-shell2http.git"),
("shellcheck", "https://github.com/luizm/asdf-shellcheck.git"),
("shellspec", "https://github.com/poikilotherm/asdf-shellspec.git"),
Expand Down Expand Up @@ -768,6 +770,7 @@ pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
pub static TRUSTED_SHORTHANDS: Lazy<HashSet<&'static str>> = Lazy::new(|| {
HashSet::from([
"boundary",
"coder",
"consul",
"dt",
"elixir",
Expand Down

0 comments on commit 939ef9d

Please sign in to comment.