From 9c64408c1cbe90c65f4cf7cbbc1ea7527511ca83 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 27 Jan 2023 11:03:45 -0800 Subject: [PATCH] Releasing v0.4.0 --- CHANGELOG.md | 7 +++++++ app/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- kludgine/Cargo.toml | 8 ++++---- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c65c57fe..29f938680 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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). +## v0.4.0 + +### Changes + +- Updated `easygpu` to 0.4.0: + - `wgpu` has been updated to 0.15.0. + ## v0.3.1 ### Changes diff --git a/app/Cargo.toml b/app/Cargo.toml index 5b14f17e1..5b9b87680 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine-app" -version = "0.3.1" +version = "0.4.0" authors = ["Jonathan Johnson "] edition = "2018" description = "Application and Windowing for Kludgine" @@ -17,7 +17,7 @@ tokio-rt = ["tokio"] smol-rt = ["smol", "smol-timeout", "easy-parallel"] [dependencies] -kludgine-core = { version = "0.3.1", path = "../core" } +kludgine-core = { version = "0.4.0", path = "../core" } parking_lot = "0.12.0" tracing = "0.1.29" diff --git a/core/Cargo.toml b/core/Cargo.toml index c070abb02..936c3d0ff 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine-core" -version = "0.3.1" +version = "0.4.0" authors = ["Jonathan Johnson "] edition = "2018" description = "2D rendering for Kludgine" diff --git a/kludgine/Cargo.toml b/kludgine/Cargo.toml index e1869feb8..3ccccaae7 100644 --- a/kludgine/Cargo.toml +++ b/kludgine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine" -version = "0.3.1" +version = "0.4.0" authors = ["Jonathan Johnson "] edition = "2018" description = "An asynchronous app and 2d game framework" @@ -27,8 +27,8 @@ bundled-fonts-roboto = ["kludgine-core/bundled-fonts-roboto"] serialization = ["kludgine-core/serialization"] [dependencies] -kludgine-core = { version = "0.3.1", path = "../core" } -kludgine-app = { version = "0.3.1", path = "../app", optional = true, default-features = false } +kludgine-core = { version = "0.4.0", path = "../core" } +kludgine-app = { version = "0.4.0", path = "../app", optional = true, default-features = false } cfg-if = "1.0.0" # [target.'cfg(target_arch = "wasm32")'.dependencies] @@ -42,7 +42,7 @@ rand = "0.8.4" tokio = { version = "1.16.1", features = ["full"] } maplit = "1.0.2" image = { version = "0.24.0", default-features = false, features = ["png"] } -env_logger = "0.9.0" +env_logger = "0.10.0" [[example]] name = "text"