Skip to content

Commit

Permalink
Releasing v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Apr 28, 2023
1 parent 9d33021 commit ebf9360
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
26 changes: 13 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## Unreleased
## v0.5.0 (2023-04-28)

### Breaking Changes

Expand Down Expand Up @@ -36,14 +36,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Points and Scaled. This allows application-level scaling in addition to the
DPI scaling Kludgine already does.

## v0.4.0
## v0.4.0 (2023-01-27)

### Changes

- Updated `easygpu` to 0.4.0:
- `wgpu` has been updated to 0.15.0.

## v0.3.1
## v0.3.1 (2022-11-06)

### Changes

Expand All @@ -52,23 +52,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Versions of rusttype are now pinned to prevent transient dependency upgrades
breaking compilation.

## v0.3.0
## v0.3.0 (2022-11-06)

### Changes

- Updated `easygpu` to 0.3.0:
- `wgpu` has been updated to 0.14.0.
- `winit` has been updated to 0.27.4.

## v0.2.0
## v0.2.0 (2022-07-31)

### Changes

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

## v0.1.0
## v0.1.0 (2022-02-02)

### Changes

Expand All @@ -81,34 +81,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed incompatibility with image crate update.
- Changed dependency versions to be less lenient.

## v0.1.0-dev.6
## v0.1.0-dev.6 (2021-12-07)

### Fixes

- Fixed issue where render_one_frame would freeze in headless environments (#53).

## v0.1.0-dev.5
## v0.1.0-dev.5 (2021-12-06)

### Changed

- Updated dependencies for compatability with wgpu 0.11.1.
- Implemented Sprite alpha rendering. The APIs already existed, but the alpha value was being ignored.

## v0.1.0-dev.4
## v0.1.0-dev.4 (2021-10-31)

### Added

- `Sprite::current_frame` immutably retrieves the current frame. This
is equivalent to calling `Sprite::get_frame(None)` but can be used
in non-mutable settings.

## v0.1.0-dev.3
## v0.1.0-dev.3 (2021-10-11)

### Changes

- Updated `easygpu` and `easygpu-lyon`, which moves Kludgine onto `wgpu` 0.11.

## v0.1.0-dev.2
## v0.1.0-dev.2 (2021-10-11)

### Added

Expand All @@ -126,7 +126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
waiting for the OS to ask for us to redraw after resizing, rather than forcing
a resize.

## v0.1.0-dev.1
## v0.1.0-dev.1 (2021-09-01)

### Breaking Changes

Expand All @@ -143,7 +143,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
it at `Scaled` resolution. This restores the behavior before the parameters
were switched to `Displayable`.

## v0.1.0-dev.0
## v0.1.0-dev.0 (2021-08-22)

### Breaking 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.4.0"
version = "0.5.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2018"
description = "Application and Windowing for Kludgine"
Expand All @@ -18,7 +18,7 @@ tokio = ["dep:tokio"]
smol = ["dep:smol", "dep:smol-timeout", "dep:easy-parallel"]

[dependencies]
kludgine-core = { version = "0.4.0", path = "../core" }
kludgine-core = { version = "0.5.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.4.0"
version = "0.5.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.4.0"
version = "0.5.0"
authors = ["Jonathan Johnson <[email protected]>"]
edition = "2021"
description = "An asynchronous app and 2d game framework"
Expand All @@ -27,11 +27,11 @@ bundled-fonts-roboto = ["kludgine-core/bundled-fonts-roboto"]
serde = ["kludgine-core/serde"]

[dependencies]
kludgine-core = { version = "0.4.0", path = "../core" }
kludgine-core = { version = "0.5.0", path = "../core" }
# For some reason, changing this to app = { package = ".."} allows the dep:
# syntax to work as expected. Using the normal kludgine-app = { version .. }
# path causes a cryptic error when using the dep: syntax in the app feature.
app = { package = "kludgine-app", version = "0.4.0", path = "../app", optional = true, default-features = false }
app = { package = "kludgine-app", version = "0.5.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 ebf9360

Please sign in to comment.