Skip to content

Commit 0ee48de

Browse files
Bump the CLI version to v0.2.0 (#85)
Signed-off-by: Marcela Melara <[email protected]>
1 parent ac6f174 commit 0ee48de

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0] - 2025-10-15
9+
10+
### Added
11+
- Implement secure key zeroization for cryptographic operations
12+
- Support for OpenSSF Model Signing (OMS) for C2PA and in-toto formats
13+
- Support for Atlas CLI-specific SLSA Provenance generation
14+
- Atlas CLI test framework
15+
816
## [0.1.0] - 2025-06-05
917

1018
### Added
@@ -15,4 +23,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1523
- Model format support (ONNX, TensorFlow, PyTorch, Keras)
1624
- TEE attestation support (Intel TDX)
1725
- Cross-reference linking between manifests
18-
- Manifest verification and validation
26+
- Manifest verification and validation

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atlas-cli"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2024"
55
description = "Machine Learning Lifecycle & Transparency Manager - Create and verify manifests for ML models and datasets"
66
documentation = "https://docs.rs/atlas-cli"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//! - [Examples](https://github.com/IntelLabs/atlas-cli/blob/main/docs/EXAMPLES.md)
3030
//! - [Development Guide](https://github.com/IntelLabs/atlas-cli/blob/main/docs/DEVELOPMENT.md)
3131
32-
#![doc(html_root_url = "https://docs.rs/atlas-cli/0.1.0")]
32+
#![doc(html_root_url = "https://docs.rs/atlas-cli/0.2.0")]
3333

3434
pub mod cc_attestation;
3535
pub mod cli;

src/manifest/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use tdx_workload_attestation::get_platform_name;
2424
use time::OffsetDateTime;
2525
use uuid::Uuid;
2626

27-
const CLAIM_GENERATOR: &str = "atlas-cli:0.1.1";
27+
const CLAIM_GENERATOR: &str = "atlas-cli:0.2.0";
2828

2929
/// Asset type enum to distinguish between models, datasets, software, and evaluations
3030
pub enum AssetKind {

0 commit comments

Comments
 (0)