Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.

Commit a32e0c8

Browse files
authored
Release 0.3.1 (#128)
1 parent d98d5f2 commit a32e0c8

File tree

14 files changed

+34
-26
lines changed

14 files changed

+34
-26
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [0.3.1](https://github.com/jdno/atc/releases/tag/v0.3.1)
11+
12+
### Fixed
13+
14+
- Re-export missing ServiceError type by [@jdno](https://github.com/jdno) in [#127](https://github.com/jdno/auto-traffic-control/pull/127)
15+
16+
**Full Changelog**: <https://github.com/jdno/auto-traffic-control/compare/v0.3.0...v0.3.1>
17+
1018
## [0.3.0](https://github.com/jdno/atc/releases/tag/v0.3.0)
1119

1220
### Added

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/javascript/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-traffic-control-example",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "An example showing how to use Auto Traffic Control's API",
55
"private": true,
66
"type": "module",

examples/rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "auto-traffic-control-example"
33
license = "MIT OR Apache-2.0"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66

77
description = "An example showing how to use Auto Traffic Control's API"
@@ -17,6 +17,6 @@ publish = false
1717
# https://doc.rust-lang.org/cargo/reference/manifest.html
1818

1919
[dependencies]
20-
auto-traffic-control = { path = "../../sdk/rust", version = "0.3.0" }
20+
auto-traffic-control = { path = "../../sdk/rust", version = "0.3.1" }
2121

2222
tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread"] }

examples/typescript/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-traffic-control-example",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "An example showing how to use Auto Traffic Control's API",
55
"private": true,
66
"main": "main.ts",

game/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "auto-traffic-control-game"
33
license = "MIT OR Apache-2.0"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
edition = "2021"
66

77
rust-version = "1.60"
@@ -31,7 +31,7 @@ copyright = "Copyright (c) 2022 Jan David Nose"
3131
category = "public.app-category.games"
3232

3333
[dependencies]
34-
auto-traffic-control = { path = "../sdk/rust", version = "0.3.0", features = ["server"] }
34+
auto-traffic-control = { path = "../sdk/rust", version = "0.3.1", features = ["server"] }
3535

3636
bevy = "0.7.0"
3737
dashmap = "5.2.0"

sdk/node/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-traffic-control",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "A video game for programmers about air traffic control",
55
"main": "src/index.js",
66
"types": "src/index.d.ts",

0 commit comments

Comments
 (0)