From 10945f09d0273743d685ccd0266357d8d1ea61d8 Mon Sep 17 00:00:00 2001 From: esarver Date: Thu, 17 Oct 2024 15:20:03 -0400 Subject: [PATCH] Fix get-info issue when data on output queue (#40) --- CHANGELOG.md | 9 ++++++++- Cargo.lock | 16 ++++++++-------- Cargo.toml | 7 ++++--- 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bab15d..ba533a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how Security -- in case of vulnerabilities. --> +## [0.18.4] + +### Fixed + +- Fixed issue when getting info from an instrument with data on the output queue + ## [0.18.3] ### Added @@ -150,7 +156,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how - Feature to retrieve TSP-Link network details -[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.18.3...HEAD +[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.18.4...HEAD +[0.18.4]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.18.4 [0.18.3]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.18.3 [0.18.2]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.18.2 [0.18.1]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.18.1 diff --git a/Cargo.lock b/Cargo.lock index a09dfaf..5fde39a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1277,9 +1277,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.159" +version = "0.2.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" +checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f" [[package]] name = "linux-raw-sys" @@ -1491,9 +1491,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl" -version = "0.10.67" +version = "0.10.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b8cefcf97f41316955f9294cd61f639bdcfa9f2f230faac6cb896aa8ab64704" +checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" dependencies = [ "bitflags", "cfg-if 1.0.0", @@ -2053,9 +2053,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.129" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "6dbcf9b78a125ee667ae19388837dd12294b858d101fdd393cb9d5501ef09eb2" dependencies = [ "itoa", "memchr", @@ -2511,8 +2511,8 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tsp-toolkit-kic-lib" -version = "0.18.2" -source = "git+https://github.com/tektronix/tsp-toolkit-kic-lib.git?tag=v0.18.2#2be2646120d559f1c69cc8ea0f12426cfbdbab00" +version = "0.18.3" +source = "git+https://github.com/tektronix/tsp-toolkit-kic-lib.git?tag=v0.18.3-0#c17e31f8742ab7953240787e133a396f71830555" dependencies = [ "bytes", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 4bf6c50..09abf0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.18.3" +version = "0.18.4" authors = ["Keithley Instruments, LLC"] edition = "2021" repository = "https://github.com/tektronix/tsp-toolkit-kic-cli" @@ -26,7 +26,7 @@ exitcode = "1.1.2" instrument-repl = { path = "instrument-repl" } jsonrpsee = { version = "0.22.3", features = ["tokio", "tracing", "server"] } local-ip-address = "0.6.1" -mdns = { git = "https://github.com/jaime-sense/mdns", rev = "498cf7cceaf7e2683a2e352b7e8a15dfc1c29037" } # until https://github.com/dylanmckay/mdns/pull/27 is closed +mdns = { git = "https://github.com/jaime-sense/mdns", rev = "498cf7cceaf7e2683a2e352b7e8a15dfc1c29037" } # until https://github.com/dylanmckay/mdns/pull/27 is closed minidom = "0.15.2" mockall = { version = "0.12.1", features = ["nightly"] } phf = { version = "0.11.2", features = ["macros"] } @@ -38,7 +38,7 @@ serde_json = "1.0.114" thiserror = "1.0.58" tracing = { version = "0.1.40", features = ["async-await"] } tracing-subscriber = { version = "0.3.18", features = ["json"] } -tsp-toolkit-kic-lib = { git = "https://github.com/tektronix/tsp-toolkit-kic-lib.git", tag = "v0.18.2" } +tsp-toolkit-kic-lib = { git = "https://github.com/tektronix/tsp-toolkit-kic-lib.git", tag = "v0.18.3-0" } [workspace.lints.rust] warnings = "deny" @@ -52,3 +52,4 @@ arithmetic_side_effects = "deny" [workspace.lints.rustdoc] all = "warn" missing_doc_code_examples = "warn" +