From fe3afd7ef832b349f99d3ae1e460eca36232c21c Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 1 Sep 2021 19:49:20 -0700 Subject: [PATCH] Releasing 0.1.0-dev.1 --- CHANGELOG.md | 2 +- README.md | 2 +- app/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- kludgine/Cargo.toml | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2844eb09c..4967f9100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 35cf3aa8c..b12a872d2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/Cargo.toml b/app/Cargo.toml index 309bc6198..45d6a9ee1 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine-app" -version = "0.1.0-dev.0" +version = "0.1.0-dev.1" 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.1.0-dev.0", path = "../core" } +kludgine-core = { version = "0.1.0-dev.1", path = "../core" } parking_lot = "0.11" tracing = { version = "0.1" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 343295f1c..c403a1110 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine-core" -version = "0.1.0-dev.0" +version = "0.1.0-dev.1" authors = ["Jonathan Johnson "] edition = "2018" description = "2D rendering for Kludgine" diff --git a/kludgine/Cargo.toml b/kludgine/Cargo.toml index afc5d5bc4..0c5c86030 100644 --- a/kludgine/Cargo.toml +++ b/kludgine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kludgine" -version = "0.1.0-dev.0" +version = "0.1.0-dev.1" 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.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]