Skip to content

Commit f0e1f65

Browse files
committed
GitHub CI/CD: Updated Rust toolchain to version '1.97.0' + updated changelog.
1 parent 54a862c commit f0e1f65

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

.github/workflows/cargo-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
TOOLCHAIN_MAX:
1010
required: false
1111
type: string
12-
default: "1.96.0"
12+
default: "1.97.0"
1313
OS_VERS_MIN:
1414
required: false
1515
type: string

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
66

7+
## [0.14.1] - 2026-07-13
8+
9+
### Changed
10+
11+
- GitHub CI/CD: Updated Rust toolchain to version `1.97.0`.
12+
- Docker images used for testing/building have been updated to the latest versions.
13+
- Some dependencies have been updated to the latest version.
14+
715
## [0.14.0] - 2026-06-18
816

917
### Added

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
@@ -1,6 +1,6 @@
11
[package]
22
name = "tss2-fapi-rs"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
edition = "2024"
55
rust-version = "1.86"
66
description = "Provides a Rust interface to the TSS2.0 Feature API (FAPI)"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
//!
8989
//! ```toml
9090
//! [dependencies]
91-
//! tss2-fapi-rs = "0.14.0"
91+
//! tss2-fapi-rs = "0.14.1"
9292
//! ```
9393
//!
9494
//! **Note:** Please also consider the [prerequisites](#prerequisites) that are required to use the `tss2-fapi-rs` library!

tools/docker/build/rstss.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ifeq ($(filter-out stable,$(RSTSS_BRANCH)),)
2-
export IMAGE_VERSION_RSTSS := sha256:c33d92b8bd58a5397cf6ca7af960a68658256209a3f05c7be89bd55fdf007b45
2+
export IMAGE_VERSION_RSTSS := sha256:50feada2f78d3393c151b4d49d639ba2c6518b2cadf76c49e5fe8977b89c9fa4
33
else ifeq ($(RSTSS_BRANCH),unstable)
4-
export IMAGE_VERSION_RSTSS := sha256:6e7f3de9c3b0298192a4db108d955cd203b360fd1fb40b5f6940c9e3ecf7cc0b
4+
export IMAGE_VERSION_RSTSS := sha256:c8464bf6cb191194a226bef0e4d9fea90b6d51ba5b05417e01a3cf2e543c6228
55
else ifeq ($(RSTSS_BRANCH),bleeding-edge)
6-
export IMAGE_VERSION_RSTSS := sha256:5e02daff85e7678c6715db7b9c07e96d3117bf04e8ec7eaba4a8958181035017
6+
export IMAGE_VERSION_RSTSS := sha256:1e51c7bbeefc11c838e796cc2bdc8d69f2a7063893680e88c7a2da9e1ed9fdb7
77
else
88
$(error Unsupport RSTSS_BRANCH branch "$(RSTSS_BRANCH)" specified!)
99
endif

0 commit comments

Comments
 (0)