From 1da204b36716402a9237f28c7c4cdf23c2c2d98d Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Wed, 19 Jun 2024 22:11:14 +0000 Subject: [PATCH 1/2] Update copyright year. --- LICENSE | 1 + 1 file changed, 1 insertion(+) diff --git a/LICENSE b/LICENSE index 927c02c..9e2751f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,5 @@ Copyright (c) 2016-2017 Isis Agora Lovecruft, Henry de Valence. All rights reserved. +Copyright (c) 2016-2024 Isis Agora Lovecruft. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are From 1da93bf97e374b9dc2d99f9d299c3c035cfd4ff6 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Wed, 19 Jun 2024 22:11:36 +0000 Subject: [PATCH 2/2] Bump version to 2.6. --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3bbc305..ae7361c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ name = "subtle" # - update html_root_url # - update README if necessary by semver # - if any updates were made to the README, also update the module documentation in src/lib.rs -version = "2.5.0" +version = "2.6.0" edition = "2018" authors = ["Isis Lovecruft ", "Henry de Valence "] diff --git a/README.md b/README.md index 0753be3..a9eb261 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ instead of `bool` which are intended to execute in constant-time. The `Choice` type is a wrapper around a `u8` that holds a `0` or `1`. ```toml -subtle = "2.5" +subtle = "2.6" ``` This crate represents a “best-effort” attempt, since side-channels diff --git a/src/lib.rs b/src/lib.rs index 09ec1bf..b6e42c4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ #![no_std] #![deny(missing_docs)] #![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")] -#![doc(html_root_url = "https://docs.rs/subtle/2.5.0")] +#![doc(html_root_url = "https://docs.rs/subtle/2.6.0")] //! # subtle [![](https://img.shields.io/crates/v/subtle.svg)](https://crates.io/crates/subtle) [![](https://img.shields.io/badge/dynamic/json.svg?label=docs&uri=https%3A%2F%2Fcrates.io%2Fapi%2Fv1%2Fcrates%2Fsubtle%2Fversions&query=%24.versions%5B0%5D.num&colorB=4F74A6)](https://doc.dalek.rs/subtle) [![](https://travis-ci.org/dalek-cryptography/subtle.svg?branch=master)](https://travis-ci.org/dalek-cryptography/subtle) //! @@ -22,7 +22,7 @@ //! type is a wrapper around a `u8` that holds a `0` or `1`. //! //! ```toml -//! subtle = "2.5" +//! subtle = "2.6" //! ``` //! //! This crate represents a “best-effort” attempt, since side-channels