Skip to content

Commit

Permalink
0.2.23
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Apr 16, 2024
1 parent 42431a6 commit 4347586
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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 = "chompbuild"
version = "0.2.22"
version = "0.2.23"
authors = ["Guy Bedford <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node-chomp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chomp",
"version": "0.2.22",
"version": "0.2.23",
"description": "'JS Make' - parallel task runner CLI for the frontend ecosystem with a JS extension system",
"bin": {
"chomp": "index.js"
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ fn uri_parse(uri_str: &str) -> Option<Uri> {
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(not(debug_assertions))]
let version = "0.2.22";
let version = "0.2.23";
#[cfg(debug_assertions)]
let version = "0.2.22-debug";
let version = "0.2.23-debug";
let matches = Command::new("Chomp")
.version(version)
.arg(
Expand Down

0 comments on commit 4347586

Please sign in to comment.