From d3028eaf93694fbe69e5f253315b725235c49534 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdx@users.noreply.github.com> Date: Fri, 1 Dec 2023 13:47:01 -0600 Subject: [PATCH] chore: Release rtx-cli version 2023.12.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- default.nix | 2 +- packaging/rpm/rtx.spec | 2 +- src/default_shorthands.rs | 5 ++--- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5feec39bc4..48a3df59e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1779,7 +1779,7 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" [[package]] name = "rtx-cli" -version = "2023.12.0" +version = "2023.12.1" dependencies = [ "base64", "built", diff --git a/Cargo.toml b/Cargo.toml index e1aaa9ebe0..444b38beac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtx-cli" -version = "2023.12.0" +version = "2023.12.1" edition = "2021" description = "Polyglot runtime manager (asdf rust clone)" authors = ["Jeff Dickey (@jdx)"] diff --git a/default.nix b/default.nix index ccd464c43a..db94d34cb3 100644 --- a/default.nix +++ b/default.nix @@ -7,7 +7,7 @@ let in rustPlatform.buildRustPackage { pname = "rtx"; - version = "2023.12.0"; + version = "2023.12.1"; src = lib.cleanSource ./.; diff --git a/packaging/rpm/rtx.spec b/packaging/rpm/rtx.spec index d12bcc855b..56f4e22d16 100644 --- a/packaging/rpm/rtx.spec +++ b/packaging/rpm/rtx.spec @@ -1,6 +1,6 @@ Summary: Polyglot runtime manager Name: rtx -Version: 2023.12.0 +Version: 2023.12.1 Release: 1 URL: https://github.com/jdx/rtx/ Group: System diff --git a/src/default_shorthands.rs b/src/default_shorthands.rs index db6e28790a..5a9a9491ab 100644 --- a/src/default_shorthands.rs +++ b/src/default_shorthands.rs @@ -15,9 +15,8 @@ // !GENERATED FILE! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -use std::collections::HashMap; - use once_cell::sync::Lazy; +use std::collections::HashMap; pub static DEFAULT_SHORTHANDS: Lazy> = Lazy::new(|| HashMap::from(DEFAULT_SHORTHAND_LIST)); @@ -740,5 +739,5 @@ const DEFAULT_SHORTHAND_LIST: [(&str, &str); 714] = [ // rtx custom shorthands ("pipenv", "https://github.com/rtx-plugins/rtx-pipenv.git"), ("poetry", "https://github.com/rtx-plugins/rtx-poetry.git"), - ("tiny", "https://github.com/rtx-plugins/rtx-tiny.git"), + ("tiny", "https://github.com/rtx-plugins/rtx-tiny.git"), ];