Skip to content

Commit

Permalink
Fixes for TSP-761 (#22)
Browse files Browse the repository at this point in the history
Fixes for TSP-761

---------

Signed-off-by: c3charvat <[email protected]>
Co-authored-by: esarver <[email protected]>
  • Loading branch information
c3charvat and esarver authored Jul 17, 2024
1 parent f7d1780 commit 8764619
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
Security -- in case of vulnerabilities.
-->

## [0.17.0]

### Fixed
- Fixed an indexing issue for uploading modules (TSP-761)

## [0.16.2]

### Changed
Expand Down Expand Up @@ -109,7 +114,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Feature to retrieve TSP-Link network details

<!--Version Comparison Links-->
[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.16.2...HEAD
[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.17.0...HEAD
[0.17.0]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.17.0
[0.16.2]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.16.1
[0.16.1]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.16.1
[0.16.0]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.16.0
Expand Down
6 changes: 3 additions & 3 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 @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.16.2"
version = "0.17.0"
authors = ["Keithley Instruments, LLC"]
edition = "2021"
repository = "https://github.com/tektronix/tsp-toolkit-kic-cli"
Expand Down
2 changes: 1 addition & 1 deletion kic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ fn cmds() -> Command {
.long("slot")
.help("[VersaTest only] Update a module in given slot number instead of the VersaTest mainframe")
.required(false)
.value_parser(value_parser!(u16).range(1..3)),
.value_parser(value_parser!(u16).range(1..=3)),
])
})
.subcommand({
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tektronix/kic-cli",
"version": "0.16.2",
"version": "0.17.0",
"main": "index.js",
"bin": {
"windows-kic": "./bin/kic.exe",
Expand Down

0 comments on commit 8764619

Please sign in to comment.