diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe5a380..2dc0015 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added a 500ms break between the two different QFE reports (`QFE 2997 or 1015.`) [#83](https://github.com/rkusa/DATIS/issues/83)
+### Fixed
+
+- Fixed QNH and QFE for temperatures other than 16°C [#85](https://github.com/rkusa/DATIS/issues/85)
+
+### Changed
+
+- 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.
+
## [3.0.0] - 2021-04-25
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`,
diff --git a/Cargo.lock b/Cargo.lock
index c441002..47f8373 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -414,7 +414,7 @@ dependencies = [
[[package]]
name = "datis"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"datis-core",
"log",
@@ -429,7 +429,7 @@ dependencies = [
[[package]]
name = "datis-cmd"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"clap",
"ctrlc",
@@ -441,7 +441,7 @@ dependencies = [
[[package]]
name = "datis-core"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"anyhow",
"async-trait",
@@ -484,7 +484,7 @@ dependencies = [
[[package]]
name = "dcs-radio-station"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"anyhow",
"async-std",
@@ -1840,7 +1840,7 @@ dependencies = [
[[package]]
name = "srs"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"base64",
"byteorder",
@@ -2380,7 +2380,7 @@ dependencies = [
[[package]]
name = "win-tts"
-version = "3.0.0"
+version = "3.0.1"
dependencies = [
"futures",
"log",
diff --git a/crates/datis-cmd/Cargo.toml b/crates/datis-cmd/Cargo.toml
index d06cd49..e9f4c26 100644
--- a/crates/datis-cmd/Cargo.toml
+++ b/crates/datis-cmd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "datis-cmd"
-version = "3.0.0"
+version = "3.0.1"
authors = ["Markus Ast "]
edition = "2018"
diff --git a/crates/datis-core/Cargo.toml b/crates/datis-core/Cargo.toml
index 0d74abe..01a7229 100644
--- a/crates/datis-core/Cargo.toml
+++ b/crates/datis-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "datis-core"
-version = "3.0.0"
+version = "3.0.1"
authors = ["Markus Ast "]
edition = "2018"
diff --git a/crates/datis-module/Cargo.toml b/crates/datis-module/Cargo.toml
index 3b851f5..926f569 100644
--- a/crates/datis-module/Cargo.toml
+++ b/crates/datis-module/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "datis"
-version = "3.0.0"
+version = "3.0.1"
authors = ["Markus Ast "]
edition = "2018"
diff --git a/crates/radio-station/Cargo.toml b/crates/radio-station/Cargo.toml
index 0206690..7638cbf 100644
--- a/crates/radio-station/Cargo.toml
+++ b/crates/radio-station/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dcs-radio-station"
-version = "3.0.0"
+version = "3.0.1"
authors = ["Markus Ast "]
edition = "2018"
diff --git a/crates/srs/Cargo.toml b/crates/srs/Cargo.toml
index 887ee15..1baa671 100644
--- a/crates/srs/Cargo.toml
+++ b/crates/srs/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "srs"
-version = "3.0.0"
+version = "3.0.1"
authors = ["rkusa"]
edition = "2018"
diff --git a/crates/win-tts/Cargo.toml b/crates/win-tts/Cargo.toml
index f83fbdf..57808e1 100644
--- a/crates/win-tts/Cargo.toml
+++ b/crates/win-tts/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "win-tts"
-version = "3.0.0"
+version = "3.0.1"
authors = ["Markus Ast "]
edition = "2018"
diff --git a/mod/Mods/services/DATIS/entry.lua b/mod/Mods/services/DATIS/entry.lua
index 077a0e4..4b22a8c 100644
--- a/mod/Mods/services/DATIS/entry.lua
+++ b/mod/Mods/services/DATIS/entry.lua
@@ -5,7 +5,7 @@ declare_plugin("DATIS", {
"datis.dll",
},
- version = "3.0.0",
+ version = "3.0.1",
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."),