Skip to content

Commit

Permalink
0.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jun 19, 2023
1 parent 94994e2 commit 45f3e00
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
]
include:
- name: linux
os: ubuntu-18.04
os: ubuntu-latest
artifact_name: chomp
asset_name: chomp-linux
asset_extension: .tar.gz
Expand Down
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.16"
version = "0.2.17"
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.16",
"version": "0.2.17",
"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.16";
let version = "0.2.17";
#[cfg(debug_assertions)]
let version = "0.2.16-debug";
let version = "0.2.17-debug";
let matches = Command::new("Chomp")
.version(version)
.arg(
Expand Down

0 comments on commit 45f3e00

Please sign in to comment.