Skip to content

Commit

Permalink
Releasing 0.1.0-dev.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Sep 2, 2021
1 parent 3682c37 commit fe3afd7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 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.1.0-dev.1

### Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ lines to add to your `Cargo.toml` look like this:
resolver = "2"

[dependencies]
kludgine = "0.1.0-dev.0"
kludgine = "0.1.0-dev.1"
```

The `resolver` requirement is inherited from `wgpu`. This setting [will become
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-dev.0"
version = "0.1.0-dev.1"
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-dev.0", path = "../core" }
kludgine-core = { version = "0.1.0-dev.1", path = "../core" }
parking_lot = "0.11"

tracing = { version = "0.1" }
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-dev.0"
version = "0.1.0-dev.1"
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-dev.0"
version = "0.1.0-dev.1"
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-dev.0", path = "../core" }
kludgine-app = { version = "0.1.0-dev.0", path = "../app", optional = true, default-features = false }
kludgine-core = { version = "0.1.0-dev.1", path = "../core" }
kludgine-app = { version = "0.1.0-dev.1", path = "../app", optional = true, default-features = false }
cfg-if = "1"

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

0 comments on commit fe3afd7

Please sign in to comment.