Skip to content

Commit

Permalink
chore: Release rtx-cli version 2023.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 1, 2023
1 parent d547412 commit d3028ea
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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 = "rtx-cli"
version = "2023.12.0"
version = "2023.12.1"
edition = "2021"
description = "Polyglot runtime manager (asdf rust clone)"
authors = ["Jeff Dickey (@jdx)"]
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
in
rustPlatform.buildRustPackage {
pname = "rtx";
version = "2023.12.0";
version = "2023.12.1";

src = lib.cleanSource ./.;

Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/rtx.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions src/default_shorthands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
// !GENERATED FILE!
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

use std::collections::HashMap;

use once_cell::sync::Lazy;
use std::collections::HashMap;

pub static DEFAULT_SHORTHANDS: Lazy<HashMap<&'static str, &'static str>> =
Lazy::new(|| HashMap::from(DEFAULT_SHORTHAND_LIST));
Expand Down Expand Up @@ -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"),
];

0 comments on commit d3028ea

Please sign in to comment.