Skip to content

Commit

Permalink
chore: Release dmtrctl version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Jun 14, 2024
1 parent 5926631 commit 66fb08d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.79.0" --no-self-update && rustup default "1.79.0"
- name: Install cargo-dist
# we specify bash to get pipefail; it guards against the `curl` command
# failing. otherwise `sh` won't catch that `curl` returned non-0
Expand Down Expand Up @@ -110,6 +112,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.79.0" --no-self-update && rustup default "1.79.0"
- uses: swatinem/rust-cache@v2
with:
key: ${{ join(matrix.targets, '-') }}
Expand Down Expand Up @@ -164,6 +168,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.79.0" --no-self-update && rustup default "1.79.0"
- name: Install cargo-dist
shell: bash
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.14.1/cargo-dist-installer.sh | sh"
Expand Down Expand Up @@ -210,6 +216,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.79.0" --no-self-update && rustup default "1.79.0"
- name: Install cargo-dist
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.14.1/cargo-dist-installer.sh | sh"
# Fetch artifacts from scratch-storage
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@

All notable changes to this project will be documented in this file.

## [unreleased]
## [1.2.0] - 2024-06-14

### 🔧 Continuous Integration

- Migrate to cargo-dist for releases (#30)

### ⚙️ Miscellaneous Tasks

- Migrate to cliff for changelogs (#31)
- Integrate cargo release (#32)
- Update rustls to v0.23 (#33)
- Remove redundant rustls dep (#34)

## [1.1.0] - 2024-04-22

### ⚙️ Miscellaneous Tasks
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.

12 changes: 3 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dmtrctl"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
repository = "https://github.com/demeter-run/cli"
license = "Apache-2.0"
Expand Down Expand Up @@ -49,21 +49,15 @@ installers = ["shell", "powershell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "demeter-run/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "skip"
# Whether to install an updater program
install-updater = false
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.78.0"
rust-toolchain-version = "1.79.0"

[workspace.metadata.release]
push = false
Expand Down

0 comments on commit 66fb08d

Please sign in to comment.