Skip to content

Commit eb10c75

Browse files
committed
bump version to 3.0.1
1 parent 5058687 commit eb10c75

File tree

9 files changed

+21
-13
lines changed

9 files changed

+21
-13
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010

1111
- Added a 500ms break between the two different QFE reports (`QFE 2997 <break time=\"500ms\" /> or 1015.`) [#83](https://github.com/rkusa/DATIS/issues/83)
1212

13+
### Fixed
14+
15+
- Fixed QNH and QFE for temperatures other than 16°C [#85](https://github.com/rkusa/DATIS/issues/85)
16+
17+
### Changed
18+
19+
- Made the internal handling of different measurement units (like foot vs meter and pascal vs inHg) type-safe which should help to prevent measurement conversion-related errors in the future.
20+
1321
## [3.0.0] - 2021-04-25
1422

1523
The following list is a summary of changes of all previous beta releases, there were no changes since the previous beta `3.0.0-beta.3`,

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/datis-cmd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datis-cmd"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

crates/datis-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datis-core"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

crates/datis-module/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datis"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

crates/radio-station/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dcs-radio-station"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

crates/srs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "srs"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["rkusa"]
55
edition = "2018"
66

crates/win-tts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "win-tts"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

mod/Mods/services/DATIS/entry.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ declare_plugin("DATIS", {
55
"datis.dll",
66
},
77

8-
version = "3.0.0",
8+
version = "3.0.1",
99
state = "installed",
1010
developerName = "github.com/rkusa",
1111
info = _("DATIS enables a DCS server with an SRS server running on the same machine (TCP=127.0.0.1) to get weather from the mission for stations and frequencies set in the mission editor, and then to report same in a standardized format over SRS using either the Amazon or Google text to speech engines."),

0 commit comments

Comments
 (0)