Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions poly1305/CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (2019-08-19)
### Added
- `Poly1305::input_padded()` ([#16])

### Changed
- Change output to be a `MacResult` ([#16])

[#16]: https://github.com/RustCrypto/MACs/pull/16

## 0.1.0 (2019-08-15)

- Initial release
2 changes: 1 addition & 1 deletion poly1305/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "poly1305"
version = "0.1.0"
version = "0.2.0"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
description = "The Poly1305 universal hash function and message authentication code"
Expand Down