-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
jetson-gpio (2.1.6ubuntu1) focal; urgency=medium | ||
|
||
* Clean up blocking_wait_for_edge on return | ||
* Change the timeout value in the test function as the timeout value is | ||
supposed to be in seconds instead of milliseconds | ||
* Update the README to correct the timeout unit | ||
|
||
-- Linh Hoang <[email protected]> Tue, 9 Jan 2025 13:41:00 -0700 | ||
|
||
jetson-gpio (2.1.5ubuntu1) focal; urgency=medium | ||
|
||
* Update README and remove some unnessary warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .gpio import * | ||
VERSION = '2.1.5' | ||
VERSION = '2.1.6' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
'Topic :: System :: Hardware'] | ||
|
||
setup(name = 'Jetson.GPIO', | ||
version = '2.1.5', | ||
version = '2.1.6', | ||
author = 'NVIDIA', | ||
author_email = '[email protected]', | ||
description = 'A module to control Jetson GPIO channels', | ||
|