Skip to content

Commit

Permalink
Releasing v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Jan 27, 2023
1 parent aea54bf commit 9c64408
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kludgine-app"
version = "0.3.1"
version = "0.4.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2018"
description = "Application and Windowing for Kludgine"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kludgine-core"
version = "0.3.1"
version = "0.4.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2018"
description = "2D rendering for Kludgine"
Expand Down
8 changes: 4 additions & 4 deletions kludgine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kludgine"
version = "0.3.1"
version = "0.4.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2018"
description = "An asynchronous app and 2d game framework"
Expand All @@ -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]
Expand All @@ -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"
Expand Down

0 comments on commit 9c64408

Please sign in to comment.