From 39055a12e2bd719a09f902ca662e9794a73ca9ac Mon Sep 17 00:00:00 2001 From: Jan David Date: Thu, 19 May 2022 12:12:22 +0200 Subject: [PATCH] Release 0.3.2 (#131) --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 10 +++++----- examples/javascript/package.json | 2 +- examples/rust/Cargo.toml | 4 ++-- examples/typescript/package.json | 2 +- game/Cargo.toml | 4 ++-- sdk/node/package.json | 2 +- sdk/rust/Cargo.toml | 2 +- sdk/rust/README.md | 2 +- utilities/debug-client/Cargo.toml | 4 ++-- utilities/test-server/Cargo.toml | 4 ++-- 11 files changed, 26 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a5abf5..e402915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,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). +## [0.3.2](https://github.com/jdno/atc/releases/tag/v0.3.2) + +### Fixed + +- Fix the rotation of airplanes by [@jdno](https://github.com/jdno) in [#129](https://github.com/jdno/auto-traffic-control/pull/129) + +**Full Changelog**: + ## [0.3.1](https://github.com/jdno/atc/releases/tag/v0.3.1) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 7d0a894..0b49302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -209,7 +209,7 @@ dependencies = [ [[package]] name = "auto-traffic-control" -version = "0.3.1" +version = "0.3.2" dependencies = [ "glob", "prost", @@ -220,7 +220,7 @@ dependencies = [ [[package]] name = "auto-traffic-control-example" -version = "0.3.1" +version = "0.3.2" dependencies = [ "auto-traffic-control", "tokio", @@ -228,7 +228,7 @@ dependencies = [ [[package]] name = "auto-traffic-control-game" -version = "0.3.1" +version = "0.3.2" dependencies = [ "auto-traffic-control", "bevy", @@ -1376,7 +1376,7 @@ dependencies = [ [[package]] name = "debug-client" -version = "0.3.1" +version = "0.3.2" dependencies = [ "auto-traffic-control", "tokio", @@ -3351,7 +3351,7 @@ dependencies = [ [[package]] name = "test-server" -version = "0.3.1" +version = "0.3.2" dependencies = [ "auto-traffic-control", "prost", diff --git a/examples/javascript/package.json b/examples/javascript/package.json index 2dbfb69..ceabb54 100644 --- a/examples/javascript/package.json +++ b/examples/javascript/package.json @@ -1,6 +1,6 @@ { "name": "auto-traffic-control-example", - "version": "0.3.1", + "version": "0.3.2", "description": "An example showing how to use Auto Traffic Control's API", "private": true, "type": "module", diff --git a/examples/rust/Cargo.toml b/examples/rust/Cargo.toml index 983b05c..7349a29 100644 --- a/examples/rust/Cargo.toml +++ b/examples/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "auto-traffic-control-example" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "An example showing how to use Auto Traffic Control's API" @@ -17,6 +17,6 @@ publish = false # https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -auto-traffic-control = { path = "../../sdk/rust", version = "0.3.1" } +auto-traffic-control = { path = "../../sdk/rust", version = "0.3.2" } tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] } diff --git a/examples/typescript/package.json b/examples/typescript/package.json index de0a466..7bb50fb 100644 --- a/examples/typescript/package.json +++ b/examples/typescript/package.json @@ -1,6 +1,6 @@ { "name": "auto-traffic-control-example", - "version": "0.3.1", + "version": "0.3.2", "description": "An example showing how to use Auto Traffic Control's API", "private": true, "main": "main.ts", diff --git a/game/Cargo.toml b/game/Cargo.toml index 1f0154a..384263d 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "auto-traffic-control-game" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" rust-version = "1.60" @@ -31,7 +31,7 @@ copyright = "Copyright (c) 2022 Jan David Nose" category = "public.app-category.games" [dependencies] -auto-traffic-control = { path = "../sdk/rust", version = "0.3.1", features = ["server"] } +auto-traffic-control = { path = "../sdk/rust", version = "0.3.2", features = ["server"] } bevy = "0.7.0" dashmap = "5.2.0" diff --git a/sdk/node/package.json b/sdk/node/package.json index 95b40bd..8288fd7 100644 --- a/sdk/node/package.json +++ b/sdk/node/package.json @@ -1,6 +1,6 @@ { "name": "auto-traffic-control", - "version": "0.3.1", + "version": "0.3.2", "description": "A video game for programmers about air traffic control", "main": "src/index.js", "types": "src/index.d.ts", diff --git a/sdk/rust/Cargo.toml b/sdk/rust/Cargo.toml index c64c86f..62b2396 100644 --- a/sdk/rust/Cargo.toml +++ b/sdk/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "auto-traffic-control" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" rust-version = "1.56" diff --git a/sdk/rust/README.md b/sdk/rust/README.md index a3e9a7d..e12b8da 100644 --- a/sdk/rust/README.md +++ b/sdk/rust/README.md @@ -24,7 +24,7 @@ First, add `auto-traffic-control` as a new dependency to your `Cargo.toml`. ```toml [dependencies] -auto-traffic-control = "0.3.1" +auto-traffic-control = "0.3.2" ``` You also need to add [`tonic`](https://crates.io/crates/tonic), the Rust diff --git a/utilities/debug-client/Cargo.toml b/utilities/debug-client/Cargo.toml index fd10492..8ebf808 100644 --- a/utilities/debug-client/Cargo.toml +++ b/utilities/debug-client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "debug-client" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" rust-version = "1.56" @@ -18,7 +18,7 @@ publish = false # https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -auto-traffic-control = { path = "../../sdk/rust", version = "0.3.1", features = ["server"] } +auto-traffic-control = { path = "../../sdk/rust", version = "0.3.2", features = ["server"] } tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] } tokio-stream = { version = "0.1.8" } diff --git a/utilities/test-server/Cargo.toml b/utilities/test-server/Cargo.toml index a89cf89..4161d7d 100644 --- a/utilities/test-server/Cargo.toml +++ b/utilities/test-server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "test-server" license = "MIT OR Apache-2.0" -version = "0.3.1" +version = "0.3.2" edition = "2021" rust-version = "1.56" @@ -15,7 +15,7 @@ publish = false # https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -auto-traffic-control = { path = "../../sdk/rust", version = "0.3.1", features = ["server"] } +auto-traffic-control = { path = "../../sdk/rust", version = "0.3.2", features = ["server"] } prost = "0.10.3" semver = "1.0.9"