Skip to content

Commit

Permalink
Merge pull request #89 from rsadsb/rel-0.7.0
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
wcampbell0x2a authored Nov 23, 2023
2 parents 6dbeb8f + 106dd78 commit 404d4c8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [v0.7.0] 2022-11-22
- Inline `calculate_bit`, giving 5% performance boost
- Bump to MSRV 1.70, for new workspace packages, required libc version, and clap updates
- Update `--host` to support IPv6
- Bump MSRV to 1.70, for new workspace packages, required libc version, and clap updates
- Update `--host` to support IPv6 [!67](https://github.com/rsadsb/dump1090_rs/pull/67)
Thanks [@daviessm](https://github.com/daviessm)
- Add bladeRF 2.0 micro xA4 support [!21](https://github.com/rsadsb/dump1090_rs/pull/87)
Thanks [@tjmullicani](https://github.com/tjmullicani)

## [v0.6.1]
- Update clap to v4
Expand Down
4 changes: 2 additions & 2 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ rust-version.workspace = true

[workspace.package]
edition = "2021"
version = "0.6.1"
version = "0.7.0"
rust-version = "1.70.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ we support [many different](https://github.com/pothosware/SoapySDR/wiki) softwar
If you have tested this project on devices not listed below, let me know!
(you will need to add gain settings to [config.toml](dump1090_rs/config.toml) or use `--custom-config`)

| Device | Supported/Tested | Recommend | argument |
| --------- | :--------------: | :-------: | ----------------- |
| rtlsdr | x | x | `--driver rtlsdr` |
| HackRF | x | | `--driver hackrf` |
| uhd(USRP) | x | | `--driver uhd` |
| Device | Supported/Tested | Recommend | argument |
| --------------------- | :--------------: | :-------: | ----------------- |
| rtlsdr | x | x | `--driver rtlsdr` |
| HackRF | x | | `--driver hackrf` |
| uhd(USRP) | x | | `--driver uhd` |
| bladeRF 2.0 micro xA4 | x | | `--driver bladerf`|


## Usage
Expand Down
2 changes: 1 addition & 1 deletion dump1090_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rust-version.workspace = true
clap = {version = "4.4.8", features = ["color", "derive", "wrap_help"]}
num-complex = "0.4.4"
soapysdr = "0.4.0"
libdump1090_rs = { path = "../", version = "0.6.0" }
libdump1090_rs = { path = "../", version = "0.7.0" }
hex = "0.4.0"
toml = "0.8.8"
serde = { version = "1.0.193", features = ["derive"] }

0 comments on commit 404d4c8

Please sign in to comment.