Skip to content

Commit

Permalink
Merge pull request #248 from rsadsb/add-to-changelog
Browse files Browse the repository at this point in the history
Update CHANGELOG.md
  • Loading branch information
wcampbell0x2a authored Nov 23, 2023
2 parents de86449 + 22e0f7d commit eb55034
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 33 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,24 @@ Libraries are released without a new release date within this changelog,
since this pertains to binary (package) releases.

## [Package Unreleased]
### All
## [2023-11-22]
### radar / 1090 v0.6.3
- Bump dependancy `libm` to `0.2.8`
- Bump dependancy `crossterm` to `0.27.0`
- Bump dependancy `gpsd_proto` to `1.0.0`
- Bump dependancy `tracing` to `0.1.40`
- Bump dependancy `tracing-subscriber` to `0.3.17`
- Bump dependancy `time` to `0.3.30`
- Change dependancy from `tui` `0.19.0` to `ratatui` `0.24.0`
- Bumped MSRV to `1.70.0`
### rsadsb_common v0.6.2
- Bump dependancy `libm` to `0.2.8`
- Bump dependancy `tracing` to `0.1.40`
- Bump dependancy `serde_with` to `3.4.0`
- Bumped MSRV to `1.70.0`
### adsb_deku v0.7.0
- Bump dependancy `deku` to `0.16.0`
- Bump dependancy `libm` to `0.2.8`
- Bumped MSRV to `1.70.0`

### rsadsb_common v0.6.2
Expand Down
26 changes: 3 additions & 23 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = ["apps", "libadsb_deku", "rsadsb_common"]
exclude = ["ensure_no_std"]
resolver = "2"

[workspace.package]
rust-version = "1.70.0"
Expand Down
2 changes: 1 addition & 1 deletion apps/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsadsb_apps"
version = "0.6.2"
version = "0.6.3"
rust-version.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
5 changes: 1 addition & 4 deletions apps/src/radar/radar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -716,10 +716,7 @@ fn draw(

// render tabs
let airplane_len = format!("Airplanes({})", adsb_airplanes.len());
let titles = ["Map", "Coverage", &airplane_len, "Stats", "Help"]
.iter()
.copied()
.collect();
let titles = vec!["Map", "Coverage", &airplane_len, "Stats", "Help"];

let mut view_type = "";

Expand Down
2 changes: 1 addition & 1 deletion libadsb_deku/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Decoder for ADS-B(Automatic Depedent Surveillance-Broadcast) - wr
repository = "https://github.com/wcampbel0x2a/adsb_deku"
keywords = ["deku", "adsb", "aerorust", "airplane", "radar"]
categories = ["aerospace::protocols", "parsing"]
version = "0.6.3"
version = "0.7.0"
rust-version.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion libadsb_deku/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Minimum required rust version: `1.64`.

Add the following lines to your Cargo.toml file:
```text
adsb_deku = "0.6.2"
adsb_deku = "0.7.0"
```

## Support
Expand Down
4 changes: 2 additions & 2 deletions rsadsb_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "common library for adsb_deku"
repository = "https://github.com/wcampbel0x2a/adsb_deku"
keywords = ["deku", "adsb", "aerorust", "airplane", "radar"]
categories = ["aerospace::protocols", "parsing"]
version = "0.6.2"
version = "0.6.3"
rust-version.workspace = true
license.workspace = true
edition.workspace = true
Expand All @@ -16,7 +16,7 @@ alloc = ["adsb_deku/alloc", "tracing"]
serde = ["dep:serde", "dep:serde_with", "adsb_deku/serde"]

[dependencies]
adsb_deku = { path = "../libadsb_deku", default-features = false, version = "0.6.3" }
adsb_deku = { path = "../libadsb_deku", default-features = false, version = "0.7.0" }
libm = "0.2.8"
tracing = { version = "0.1.40", default-features = false, optional = true}
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down

0 comments on commit eb55034

Please sign in to comment.