Skip to content

Commit b62f583

Browse files
committed
bump version to 3.1.0
1 parent ce026d5 commit b62f583

File tree

10 files changed

+16
-14
lines changed

10 files changed

+16
-14
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.1.0] - 2021-05-05
10+
911
### Added
1012

1113
- Added `NO HPA` ATIS station option. Each ATIS station with this option set omits the hectopascals from the remarks section (thanks [@talbotmcinnis](https://github.com/talbotmcinnis) for the implementation!) [#92](https://github.com/rkusa/DATIS/pull/92)

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.1"
3+
version = "3.1.0"
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.1"
3+
version = "3.1.0"
44
authors = ["Markus Ast <m@rkusa.st>"]
55
edition = "2018"
66

crates/datis-core/src/extract.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub fn extract_atis_station_config(config: &str) -> Option<StationConfig> {
106106
_ => {
107107
log::warn!("Unsupported ATIS NO option {}", option_value);
108108
}
109-
}
109+
},
110110
_ => {
111111
log::warn!("Unsupported ATIS station option {}", option_key);
112112
}

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.1"
3+
version = "3.1.0"
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.1"
3+
version = "3.1.0"
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.1"
3+
version = "3.1.0"
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.1"
3+
version = "3.1.0"
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.1",
8+
version = "3.1.0",
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)