Skip to content

Commit

Permalink
Releasing v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Jul 31, 2022
1 parent 6998f2c commit 237ae5d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.2.0

### Changes

- Updated `easygpu` to 0.2.0:
- Updated `wgpu` to 0.13.1
- Updated `lyon_tessellation` to 1.0.1

## v0.1.0

### 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.1.0"
version = "0.2.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.1.0", path = "../core" }
kludgine-core = { version = "0.2.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.1.0"
version = "0.2.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2018"
description = "2D rendering for Kludgine"
Expand Down
6 changes: 3 additions & 3 deletions kludgine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kludgine"
version = "0.1.0"
version = "0.2.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.1.0", path = "../core" }
kludgine-app = { version = "0.1.0", path = "../app", optional = true, default-features = false }
kludgine-core = { version = "0.2.0", path = "../core" }
kludgine-app = { version = "0.2.0", path = "../app", optional = true, default-features = false }
cfg-if = "1.0.0"

# [target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down

0 comments on commit 237ae5d

Please sign in to comment.