Skip to content

Commit

Permalink
camellia: release v0.1.0 (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Sep 26, 2022
1 parent 60ccda8 commit 5eb3b7b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
11 changes: 11 additions & 0 deletions camellia/CHANGELOG.md
@@ -0,0 +1,11 @@
# Changelog

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).

## 0.1.0 (2022-09-26)
- Initial release ([#293])

[#293]: https://github.com/RustCrypto/block-ciphers/pull/293
2 changes: 1 addition & 1 deletion camellia/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "camellia"
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
version = "0.1.0"
description = "Camellia block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 1 addition & 2 deletions camellia/src/lib.rs
Expand Up @@ -36,8 +36,7 @@
#![no_std]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg",
html_root_url = "https://docs.rs/camellia/0.1.0"
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/26acc39f/logo.svg"
)]
#![deny(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]
Expand Down

0 comments on commit 5eb3b7b

Please sign in to comment.