From ea972774a37abbd86237ba3c07b968f9c8e13b32 Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Sun, 30 Jul 2023 19:19:39 +0200 Subject: [PATCH] release 0.3.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3844f7d..f30538a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.3.0] - 2023-07-30 + +### Added + +- Added FromStr implementation for `Tlsh`, to be able to build a `Tlsh` from a hash string. + See #5. +- Added type aliases for the `Tlsh` object, mirroring the aliases already existing on + the `TlshBuilder` object. + See [f242ca9](https://github.com/vthib/tlsh/commit/f242ca963f46ac59c96b0b3af23f0263ed7d18c4). + ## [0.2.1] - 2023-05-04 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 8f2f7da..286f418 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tlsh2" -version = "0.2.1" +version = "0.3.0" edition = "2021" description = "A rust implementation of the TLSH algorithm" repository = "https://github.com/vthib/tlsh"