Skip to content

Commit

Permalink
0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Apr 15, 2022
1 parent 7919eb2 commit 8efd916
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 52 deletions.
121 changes: 74 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chompbuild"
version = "0.2.1"
version = "0.2.2"
authors = ["Guy Bedford <[email protected]>"]
edition = "2021"
license = "GPL-3.0"
Expand Down Expand Up @@ -45,7 +45,7 @@ serde_v8 = "0.22.0"
sha2 = "0.10.1"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.8"
tokio-util = "0.6.9"
tokio-util = "0.7.1"
toml = "0.5"
uuid = { version = "0.8", features = ["v4"] }
v8 = "0.36.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.1",
"version": "0.2.2",
"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 @@ -70,9 +70,9 @@ fn uri_parse(uri_str: &str) -> Option<Uri> {
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(not(debug_assertions))]
let version = "0.2.1";
let version = "0.2.2";
#[cfg(debug_assertions)]
let version = "0.2.1-debug";
let version = "0.2.2-debug";
let matches = App::new("Chomp")
.version(version)
.arg(
Expand Down

0 comments on commit 8efd916

Please sign in to comment.