diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e14be10..162c7bb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: env: TARGET_DIR: target/release - runs-on: macos-latest + runs-on: macos-10.15 steps: - uses: actions/checkout@v2 with: diff --git a/Cargo.lock b/Cargo.lock index 3f60079..c0219cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -744,7 +744,7 @@ dependencies = [ [[package]] name = "tera-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index e3ee237..78a2b32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["chevdor "] edition = "2021" name = "tera-cli" -version = "0.2.0" +version = "0.2.1" description = "A command line utility written in Rust to render templates from json|toml|yaml && ENV, using the tera templating engine" readme = "README.md" license = "MIT" diff --git a/README.md b/README.md index c8badb1..f046ae0 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ Passing the `-a | --escape` flag allows escaping the content. ## Usage - tera-cli 0.2.0 + tera-cli 0.2.1 chevdor diff --git a/doc/usage.adoc b/doc/usage.adoc index 83b7565..59b4dc7 100644 --- a/doc/usage.adoc +++ b/doc/usage.adoc @@ -1,4 +1,4 @@ -tera-cli 0.2.0 +tera-cli 0.2.1 chevdor diff --git a/justfile b/justfile index d4e10f2..543ca48 100644 --- a/justfile +++ b/justfile @@ -15,7 +15,7 @@ _usage: cargo run -q -- --help > doc/usage.adoc # Generate documentation -doc:_usage +doc: _usage cargo doc -p tera-cli --all-features --no-deps # Run rustfmt diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 94c7b30..02cb8fc 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,3 @@ [toolchain] channel = "stable" -components = [ "rustfmt", "clippy" ] -profile = "minimal" +profile = "default"