Skip to content

Commit f24eb8c

Browse files
committed
update version information
1 parent 2dbd9c5 commit f24eb8c

File tree

7 files changed

+113
-96
lines changed

7 files changed

+113
-96
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1616
Security -- in case of vulnerabilities.
1717
-->
1818

19+
## [0.21.0]
20+
- Consolidate kic-debug
21+
1922
## [0.20.1]
2023

2124
### Fixed
2225
- Getting error after firmware file transferred successfully
23-
- Firmware upgrade for TTI and 2600 models getting stuck over slow connection speeds
26+
- Firmware upgrade for TTI and 2600 models getting stuck over slow connection speeds
2427

2528
## [0.20.0]
2629

@@ -264,7 +267,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
264267
- Feature to retrieve TSP-Link network details
265268

266269
<!--Version Comparison Links-->
267-
[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.20.0...HEAD
270+
[Unreleased]: https://github.com/tektronix/tsp-toolkit-kic-cli/compare/v0.21.0...HEAD
271+
[0.21.0]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.21.0
272+
[0.20.1]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.20.1
268273
[0.20.0]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.20.0
269274
[0.19.8]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.19.8
270275
[0.19.7]: https://github.com/tektronix/tsp-toolkit-kic-cli/releases/tag/v0.19.7

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
resolver = "2"
1313

1414
[workspace.package]
15-
version = "0.20.1"
15+
version = "0.21.0"
1616
authors = ["Tektronix, Inc."]
1717
edition = "2021"
1818
repository = "https://github.com/tektronix/tsp-toolkit-kic-cli"

index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ export const NAME: string
22
export const PATH: string
33
export const EXECUTABLE: string
44
export const DISCOVER_EXECUTABLE: string
5+
export const DEBUG_EXECUTABLE: string

index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ const EXECUTABLE = path.join(PATH, NAME)
1717
const DISCOVER_NAME = `kic-discover${EXTENSION}`
1818
const DISCOVER_EXECUTABLE = path.join(PATH, DISCOVER_NAME)
1919

20+
const DEBUG_NAME = `kic-debug${EXTENSION}`
21+
const DEBUG_EXECUTABLE = path.join(PATH, DEBUG_NAME)
22+
2023

2124

2225
module.exports = {
2326
NAME,
2427
PATH,
2528
EXECUTABLE,
26-
DISCOVER_EXECUTABLE
29+
DISCOVER_EXECUTABLE,
30+
DEBUG_EXECUTABLE,
2731
}

0 commit comments

Comments
 (0)