Skip to content

Commit

Permalink
bugfix: unknown versioned command
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Oct 19, 2024
1 parent a93e4fc commit 8c31b88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 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 = "shuru"
version = "0.0.24"
version = "0.0.25"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

A task runner and version manager for Node.js and Python, written in Rust! Shuru simplifies your development workflow by automating tasks and managing language versions.

[![Version](https://img.shields.io/badge/version-0.0.24-blue)](https://github.com/shuru-project/shuru/releases)
[![Version](https://img.shields.io/badge/version-0.0.25-blue)](https://github.com/shuru-project/shuru/releases)
[![License](https://img.shields.io/badge/license-MIT-lightgrey)](https://opensource.org/licenses/MIT)
[![CI Status](https://img.shields.io/badge/build-passing-brightgreen)](https://github.com/shuru-project/shuru/actions)
[![Contributors](https://img.shields.io/badge/contributors-5-orange)](https://github.com/shuru-project/shuru/graphs/contributors)
Expand Down
1 change: 1 addition & 0 deletions src/tools/version_manager/versioned_command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use std::collections::HashMap;
use strum::EnumString;

#[derive(Debug, Hash, Eq, PartialEq, Deserialize, EnumString)]
#[strum(serialize_all = "snake_case")]
pub enum VersionedCommand {
Node,
Python,
Expand Down

0 comments on commit 8c31b88

Please sign in to comment.