From 40680c8d8a40471ec5c3e16fbccaab58ea651221 Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Fri, 3 Sep 2021 00:09:41 -0500 Subject: [PATCH] Update changelog for the release. --- CHANGELOG | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a791758e..824e4e93 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,7 +5,7 @@ Notes significant changes to `lexical` and `lexical-core`. The version specified 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). -## [Unreleased] +## [0.8.0] 2021-09-03 This is a very large release that involved a full re-write from the ground-up. diff --git a/README.md b/README.md index d6a2597c..9bcd5abf 100644 --- a/README.md +++ b/README.md @@ -303,7 +303,7 @@ A benchmark on writing floats generated via a random-number generator and parsed # Safety -Due to the use of memory unsafe code in the integer and float writers, we extensively fuzz our float writers and parsers. The fuzz harnesses may be found under [fuzz](https://github.com/Alexhuszagh/rust-lexical/tree/main/fuzz), and are run continuously. So far, we've parsed and written over 68 billion floats. +Due to the use of memory unsafe code in the integer and float writers, we extensively fuzz our float writers and parsers. The fuzz harnesses may be found under [fuzz](https://github.com/Alexhuszagh/rust-lexical/tree/main/fuzz), and are run continuously. So far, we've parsed and written over 72 billion floats. Due to the simple logic of the integer writers, and the lack of memory safety in the integer parsers, we minimally fuzz both, and test it with edge-cases, which has shown no memory safety issues to date.