Skip to content

Commit

Permalink
release: 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Oct 30, 2023
1 parent 3335e74 commit bfeb955
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# totp-lite Changelog

## 2.0.1 (2023-10-30)

#### Changed

- Switch to `sha1` to `sha-1`, which was deprecated.

## 2.0.0 (2022-05-19)

#### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "totp-lite"
version = "2.0.0"
version = "2.0.1"
authors = ["Colin Woodbury <colin@fosskers.ca>"]
edition = "2018"
description = "A simple, correct TOTP library."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
//!
//! [RFC6238]: https://tools.ietf.org/html/rfc6238

#![doc(html_root_url = "https://docs.rs/totp-lite/2.0.0")]
#![doc(html_root_url = "https://docs.rs/totp-lite/2.0.1")]

use digest::{
block_buffer::Eager,
Expand Down

0 comments on commit bfeb955

Please sign in to comment.