Skip to content

Commit

Permalink
chore: Release dolos version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed May 28, 2024
1 parent a849d22 commit 4567c26
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.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 @@ -111,6 +113,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.0"
- uses: swatinem/rust-cache@v2
with:
key: ${{ join(matrix.targets, '-') }}
Expand Down Expand Up @@ -165,6 +169,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.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 @@ -211,6 +217,8 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.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,7 +2,7 @@

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

## [unreleased]
## [0.9.0] - 2024-05-28

### 🚀 Features

Expand Down Expand Up @@ -36,6 +36,8 @@ All notable changes to this project will be documented in this file.
### 🔧 Continuous Integration

- Enable linux aarch64 builds (#231)
- Restore docker builds (#255)
- Fix docker arm build (#256)

### 🧪 Testing

Expand All @@ -45,6 +47,11 @@ All notable changes to this project will be documented in this file.

- Fix lint warnings (#246)
- Tidy up info-level tracing (#247)
- Migrate to git-cliff for changelog updates (#253)
- Remove legacy ci files (#254)
- Exclude heavy features from Pallas (#257)
- Move release config to cargo toml (#258)
- Update example config files (#259)

## [0.8.0] - 2024-05-18

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.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dolos"
description = "A Cardano data-node built in Rust"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
repository = "https://github.com/txpipe/dolos"
homepage = "https://github.com/txpipe/dolos"
Expand Down Expand Up @@ -81,9 +81,9 @@ tap = "txpipe/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",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
Expand All @@ -92,6 +92,8 @@ publish-jobs = ["homebrew"]
pr-run-mode = "plan"
# 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"

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

0 comments on commit 4567c26

Please sign in to comment.