From 5ad275bddf788cbbebc506ee8483abf05e035d44 Mon Sep 17 00:00:00 2001 From: Sven Assmann Date: Sat, 1 May 2021 14:26:22 +0200 Subject: [PATCH] chore(release): prepare v0.4.8 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 4 ++-- stegano-cli/Cargo.toml | 4 ++-- stegano-core/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 242df22..edaca36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.8] - 2021-05-01 +### 🛠️ Maintenance +- [build(deps): bump block-modes from 0.7.0 to 0.8.1](https://github.com/steganogram/stegano-rs/pull/32) +- [Upgrade to GitHub-native Dependabot](https://github.com/steganogram/stegano-rs/pull/30) +- [build(deps): bump zip from 0.5.11 to 0.5.12](https://github.com/steganogram/stegano-rs/pull/29) +- [build(deps): bump deflate from 0.9.0 to 0.9.1](https://github.com/steganogram/stegano-rs/pull/28) +- [release(v0.4.7): add date+version+changes to the changelog](https://github.com/steganogram/stegano-rs/pull/27) +- [build(deps): bump byteorder from 1.4.2 to 1.4.3](https://github.com/steganogram/stegano-rs/pull/26) + +### Contributors +- [dependabot-preview[bot]](https://github.com/apps/dependabot-preview) +- [sassman](https://github.com/sassman) + ## [0.4.7] - 2021-03-14 ### 🛠️ Maintenance - [build(deps): bump byteorder from 1.4.2 to 1.4.3](https://github.com/steganogram/stegano-rs/pull/26) diff --git a/Cargo.lock b/Cargo.lock index b7434c2..6adfc35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -887,7 +887,7 @@ dependencies = [ [[package]] name = "stegano-cli" -version = "0.4.7" +version = "0.4.8" dependencies = [ "clap", "stegano-core", @@ -895,7 +895,7 @@ dependencies = [ [[package]] name = "stegano-core" -version = "0.4.7" +version = "0.4.8" dependencies = [ "aes-soft", "bitstream-io", diff --git a/stegano-cli/Cargo.toml b/stegano-cli/Cargo.toml index 29d7745..8953205 100644 --- a/stegano-cli/Cargo.toml +++ b/stegano-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stegano-cli" description = "Hiding secret data with steganography in PNG images and WAV audio files" -version = "0.4.7" +version = "0.4.8" authors = ["Sven Assmann "] edition = "2018" license = "GPL-3.0-only" @@ -17,7 +17,7 @@ travis-ci = { repository = "steganogram/stegano-rs", branch = "main" } maintenance = { status = "actively-developed" } [dependencies] -stegano-core = { path = "../stegano-core", version = "0.4.7" } +stegano-core = { path = "../stegano-core", version = "0.4.8" } #stegano-core = "0.4.5" clap = "2.33" diff --git a/stegano-core/Cargo.toml b/stegano-core/Cargo.toml index 19b631d..3c17d81 100644 --- a/stegano-core/Cargo.toml +++ b/stegano-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stegano-core" description = "Steganography core library for stegano-cli. Supports hiding data in PNG images via LSB Encoding." -version = "0.4.7" +version = "0.4.8" authors = ["Sven Assmann "] edition = "2018" license = "GPL-3.0-only"