From 0080d4152077c3e5d65f191411b3b2f1ebb5b748 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 27 Jun 2026 08:23:12 -0600 Subject: [PATCH] aead-stream v0.6.0 Initial release --- Cargo.lock | 2 +- aead-stream/CHANGELOG.md | 2 +- aead-stream/Cargo.toml | 2 +- aead-stream/LICENSE-MIT | 2 +- aead-stream/README.md | 6 +++--- ocb3/Cargo.toml | 2 +- xaes-256-gcm/Cargo.toml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50ca34e5..03b8465d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18,7 +18,7 @@ dependencies = [ [[package]] name = "aead-stream" -version = "0.6.0-rc.3" +version = "0.6.0" dependencies = [ "aead", ] diff --git a/aead-stream/CHANGELOG.md b/aead-stream/CHANGELOG.md index c0efc932..235e9fa4 100644 --- a/aead-stream/CHANGELOG.md +++ b/aead-stream/CHANGELOG.md @@ -4,5 +4,5 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## UNRELEASED +## 0.6.0 (2026-06-28) - Initial release diff --git a/aead-stream/Cargo.toml b/aead-stream/Cargo.toml index 569a792d..d33b2eac 100644 --- a/aead-stream/Cargo.toml +++ b/aead-stream/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aead-stream" -version = "0.6.0-rc.3" +version = "0.6.0" description = "Generic implementation of the STREAM online authenticated encryption construction" authors = ["RustCrypto Developers"] edition = "2024" diff --git a/aead-stream/LICENSE-MIT b/aead-stream/LICENSE-MIT index 455de7c8..0869eed8 100644 --- a/aead-stream/LICENSE-MIT +++ b/aead-stream/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) 2024 The RustCrypto Project Developers +Copyright (c) 2024-2026 The RustCrypto Project Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/aead-stream/README.md b/aead-stream/README.md index e56ebff9..807e7bc6 100644 --- a/aead-stream/README.md +++ b/aead-stream/README.md @@ -2,10 +2,10 @@ [![crate][crate-image]][crate-link] [![Docs][docs-image]][docs-link] +[![Build Status][build-image]][build-link] ![Apache2/MIT licensed][license-image] ![Rust Version][rustc-image] [![Project Chat][chat-image]][chat-link] -[![Build Status][build-image]][build-link] Generic pure-Rust implementation of the STREAM online authenticated encryption construction as described in the paper [Online Authenticated-Encryption and its Nonce-Reuse Misuse-Resistance][1]. @@ -55,12 +55,12 @@ dual licensed as above, without any additional terms or conditions. [crate-link]: https://crates.io/crates/aead-stream [docs-image]: https://docs.rs/aead-stream/badge.svg [docs-link]: https://docs.rs/aead-stream/ +[build-image]: https://github.com/RustCrypto/AEADs/actions/workflows/aead-stream.yml/badge.svg +[build-link]: https://github.com/RustCrypto/AEADs/actions/workflows/aead-stream.yml [license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg [rustc-image]: https://img.shields.io/badge/rustc-1.85+-blue.svg [chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg [chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260038-AEADs -[build-image]: https://github.com/RustCrypto/AEADs/workflows/aead-stream/badge.svg?branch=master&event=push -[build-link]: https://github.com/RustCrypto/AEADs/actions [//]: # (general links) diff --git a/ocb3/Cargo.toml b/ocb3/Cargo.toml index cc879775..c830e910 100644 --- a/ocb3/Cargo.toml +++ b/ocb3/Cargo.toml @@ -21,7 +21,7 @@ cipher = "0.5" ctr = "0.10" dbl = "0.5" subtle = { version = "2", default-features = false } -aead-stream = { version = "0.6.0-rc.3", optional = true, default-features = false } +aead-stream = { version = "0.6", optional = true, default-features = false } zeroize = { version = "1", optional = true, default-features = false } [dev-dependencies] diff --git a/xaes-256-gcm/Cargo.toml b/xaes-256-gcm/Cargo.toml index 3e3960ce..63e7e17c 100644 --- a/xaes-256-gcm/Cargo.toml +++ b/xaes-256-gcm/Cargo.toml @@ -20,7 +20,7 @@ aead = { version = "0.6", default-features = false } aes = "0.9" aes-gcm = { version = "0.11.0-rc.3", default-features = false, features = ["aes"] } cipher = "0.5" -aead-stream = { version = "0.6.0-rc.2", optional = true, default-features = false } +aead-stream = { version = "0.6", optional = true, default-features = false } [dev-dependencies] aead = { version = "0.6", features = ["dev"], default-features = false }