Skip to content

Commit 65cbb0f

Browse files
committed
Pin MacOS runner to 10.15
1 parent 4a26313 commit 65cbb0f

7 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
env:
4141
TARGET_DIR: target/release
4242

43-
runs-on: macos-latest
43+
runs-on: macos-10.15
4444
steps:
4545
- uses: actions/checkout@v2
4646
with:

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["chevdor <chevdor@gmail.com>"]
33
edition = "2021"
44
name = "tera-cli"
5-
version = "0.2.0"
5+
version = "0.2.1"
66
description = "A command line utility written in Rust to render templates from json|toml|yaml && ENV, using the tera templating engine"
77
readme = "README.md"
88
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Passing the `-a | --escape` flag allows escaping the content.
171171

172172
## Usage
173173

174-
tera-cli 0.2.0
174+
tera-cli 0.2.1
175175

176176
chevdor <chevdor@gmail.com>
177177

doc/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tera-cli 0.2.0
1+
tera-cli 0.2.1
22

33
chevdor <chevdor@gmail.com>
44

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _usage:
1515
cargo run -q -- --help > doc/usage.adoc
1616

1717
# Generate documentation
18-
doc:_usage
18+
doc: _usage
1919
cargo doc -p tera-cli --all-features --no-deps
2020

2121
# Run rustfmt

rust-toolchain.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[toolchain]
22
channel = "stable"
3-
components = [ "rustfmt", "clippy" ]
4-
profile = "minimal"
3+
profile = "default"

0 commit comments

Comments
 (0)