From caa7758c6be8da01b0f7508b56c3f8eb5370f882 Mon Sep 17 00:00:00 2001 From: Oliver Daff Date: Fri, 25 Nov 2022 11:07:30 +1000 Subject: [PATCH] chore/release-0.4.0 (#23) * Added 0.4.0 release notes * Added crate updates to change log --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7433161..69b8541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.4.0 + - Added checksum module with CRC32Sink to calculate CRC32. - Added counter module with ByteCounter and ByteLimit. - Enable optional features generation on docs.rs. +- Update tokio to 1.22.0 +- Update anyhow to 1.0.66 +- Update futures to 0.3.25 ## 0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 72bdf4d..ef1d6cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cobalt-async" -version = "0.3.0" +version = "0.4.0" authors = ["harrison.ai Data Engineering "] edition = "2021" description = "This library provides a collection of helpful functions for working with async Rust."