Skip to content

Commit

Permalink
chore: Release dolos version 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Jan 24, 2025
1 parent 1495818 commit 3b3de10
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.0"
run: rustup update "1.81.0" --no-self-update && rustup default "1.81.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 @@ -114,7 +114,7 @@ jobs:
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.0"
run: rustup update "1.81.0" --no-self-update && rustup default "1.81.0"
- uses: swatinem/rust-cache@v2
with:
key: ${{ join(matrix.targets, '-') }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.0"
run: rustup update "1.81.0" --no-self-update && rustup default "1.81.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 @@ -218,7 +218,7 @@ jobs:
with:
submodules: recursive
- name: Install Rust
run: rustup update "1.78.0" --no-self-update && rustup default "1.78.0"
run: rustup update "1.81.0" --no-self-update && rustup default "1.81.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
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,66 @@

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

## [0.19.0] - 2025-01-24

### 🚀 Features

- *(grpc)* Apply predicate on WatchTx (#384)
- *(serve)* Implement u5c chain-sync read-tip method (#391)
- *(grpc)* Honor intersect in watch module (#408)
- Introduce chain summary struct (#410)
- Support forcing protocol version at epoch 0 (#417)
- Implement phase-2 validation / evaluation (#421)
- Enable npm installer (#425)
- Call Pallas phase-1 validation during submit (#426)
- Support shelley genesis utxos (#437)
- Use hacks to keep gov action pparams updated (#436)
- Allow configurable ledger prune height (#440)

### 🐛 Bug Fixes

- Add detail to IO error (#392)
- Relax mutability requirements on key structs (#414)
- Apply ledger genesis when WAL is at origin (#415)
- *(serve)* Allow pparams query on origin ledger (#416)
- Adjust mithril-client features for windows target (#418)
- Hardcode ada_per_utxo_byte transformation from words to bytes (#423)

### 🚜 Refactor

- Revisit pparams folding approach (#430)

### 📚 Documentation

- Add missing conway_path in config section (#393)
- Add custom network example (#419)

### 🔧 Continuous Integration

- Disable windows builds until upstream issues are resolved (#441)
- Build docker image on push to main branch (#428)

### 🧪 Testing

- Fix genesis utxo tests (#439)

### ⚙️ Miscellaneous Tasks

- Fix lint issues (#388)
- Fix lint warnings from latest clippy (#390)
- Add conway genesis files to examples (#380)
- Fix lint warnings (#438)

## [0.18.2] - 2024-11-02

### 🐛 Bug Fixes

- Use s3 accelerate endpoint for snapshots (#377)

### ⚙️ Miscellaneous Tasks

- Release dolos version 0.18.2

## [0.18.1] - 2024-10-25

### 🐛 Bug Fixes
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.

5 changes: 3 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.18.2"
version = "0.19.0"
edition = "2021"
repository = "https://github.com/txpipe/dolos"
homepage = "https://github.com/txpipe/dolos"
Expand Down Expand Up @@ -112,7 +112,7 @@ 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"
rust-toolchain-version = "1.81.0"
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
Expand All @@ -127,4 +127,5 @@ pre-release-hook = ["git", "cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"

[workspace.metadata.dist.github-custom-runners]
aarch64-apple-darwin = "macos-14"
x86_64-apple-darwin = "macos-13"
aarch64-unknown-linux-gnu = "buildjet-2vcpu-ubuntu-2204-arm"

0 comments on commit 3b3de10

Please sign in to comment.