Skip to content

Commit

Permalink
Pin MacOS runner to 10.15
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Nov 4, 2021
1 parent 4a26313 commit 65cbb0f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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
Expand Up @@ -2,7 +2,7 @@
authors = ["chevdor <chevdor@gmail.com>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <chevdor@gmail.com>

Expand Down
2 changes: 1 addition & 1 deletion doc/usage.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tera-cli 0.2.0
tera-cli 0.2.1

chevdor <chevdor@gmail.com>

Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[toolchain]
channel = "stable"
components = [ "rustfmt", "clippy" ]
profile = "minimal"
profile = "default"

0 comments on commit 65cbb0f

Please sign in to comment.