From e272b8bb78afc07575e62a0975460578854ed711 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Fri, 26 Mar 2021 12:15:47 +0100 Subject: [PATCH] Release 0.8.2 --- CHANGELOG.md | 1 + Cargo.lock | 4 ++-- cli/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index daa22e1..ce885bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 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.2] - 2021-03-26 ### Changed - Updated dependencies diff --git a/Cargo.lock b/Cargo.lock index 4c36878..424314c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -960,7 +960,7 @@ dependencies = [ [[package]] name = "texture-synthesis" -version = "0.8.0" +version = "0.8.1" dependencies = [ "criterion", "crossbeam-utils", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "texture-synthesis-cli" -version = "0.8.1" +version = "0.8.2" dependencies = [ "atty", "indicatif", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0a9d98e..e84e51c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ name = "texture-synthesis-cli" description = "A CLI for texture-synthesis" repository = "https://github.com/EmbarkStudios/texture-synthesis" -version = "0.8.1" +version = "0.8.2" authors = [ "Embark ", "Anastasia Opara ", @@ -23,7 +23,7 @@ bench = false [dependencies] structopt = "0.3" -texture-synthesis = { version = "0.8.0", path = "../lib" } +texture-synthesis = { version = "0.8.1", path = "../lib" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # We unfortunately can't use clicolors-control which is used by indicatif diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 111d0ce..d9f7730 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -2,7 +2,7 @@ name = "texture-synthesis" description = "Multiresolution Stochastic Texture Synthesis, a non-parametric example-based algorithm for image generation" repository = "https://github.com/EmbarkStudios/texture-synthesis" -version = "0.8.0" +version = "0.8.1" authors = [ "Embark ", "Anastasia Opara ",