Skip to content

Commit

Permalink
bump version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rkusa committed May 5, 2021
1 parent ce026d5 commit b62f583
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [3.1.0] - 2021-05-05

### Added

- 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)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/datis-cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datis-cmd"
version = "3.0.1"
version = "3.1.0"
authors = ["Markus Ast <m@rkusa.st>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/datis-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datis-core"
version = "3.0.1"
version = "3.1.0"
authors = ["Markus Ast <m@rkusa.st>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/datis-core/src/extract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub fn extract_atis_station_config(config: &str) -> Option<StationConfig> {
_ => {
log::warn!("Unsupported ATIS NO option {}", option_value);
}
}
},
_ => {
log::warn!("Unsupported ATIS station option {}", option_key);
}
Expand Down
2 changes: 1 addition & 1 deletion crates/datis-module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "datis"
version = "3.0.1"
version = "3.1.0"
authors = ["Markus Ast <m@rkusa.st>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/radio-station/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dcs-radio-station"
version = "3.0.1"
version = "3.1.0"
authors = ["Markus Ast <m@rkusa.st>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/srs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "srs"
version = "3.0.1"
version = "3.1.0"
authors = ["rkusa"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/win-tts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "win-tts"
version = "3.0.1"
version = "3.1.0"
authors = ["Markus Ast <m@rkusa.st>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion mod/Mods/services/DATIS/entry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ declare_plugin("DATIS", {
"datis.dll",
},

version = "3.0.1",
version = "3.1.0",
state = "installed",
developerName = "github.com/rkusa",
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."),
Expand Down

0 comments on commit b62f583

Please sign in to comment.