File tree Expand file tree Collapse file tree 5 files changed +9
-28
lines changed Expand file tree Collapse file tree 5 files changed +9
-28
lines changed Original file line number Diff line number Diff line change 3
3
[submodule "extras/optiga-trust-m/external/optiga "]
4
4
path = extras/optiga-trust-m/external/optiga
5
5
url = https://github.com/Infineon/optiga-trust-m.git
6
- branch = release-v5.1.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,15 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## 1.4.1 (2024-08-27)
8
+ ## 1.4.2 (2024-08-29)
9
+
10
+ ### Fixed
11
+ - Removed .reuse/dep5
12
+ - Cleaned setup.py
13
+ - Date of relese 1.4.1 fixed
14
+
15
+ ## 1.4.1 (2024-08-29)
9
16
10
17
### Changed
11
18
- Migrated from .reuse/dep5 to REUSE.toml
12
19
13
20
### Fixed
14
21
- Added optigatrust-libusb-win-amd64 library
15
22
16
-
17
23
## 1.4.0 (2024-08-08)
18
24
19
25
### Added
Original file line number Diff line number Diff line change @@ -95,12 +95,6 @@ def run(self):
95
95
"optigatrust" : __package_root_dir ,
96
96
}
97
97
98
- with open (os .path .join (__package_root_dir , "version.py" )) as init_root :
99
- for line in init_root :
100
- if line .startswith ("__version_info__" ):
101
- __version_tuple__ = eval (line .split ("=" )[1 ])
102
- __version = "." .join ([str (x ) for x in __version_tuple__ ])
103
-
104
98
if __name__ == '__main__' :
105
99
setup (
106
100
name = __name ,
Original file line number Diff line number Diff line change 5
5
6
6
"""Library version"""
7
7
8
- __version__ = "1.4.1 "
8
+ __version__ = "1.4.2 "
9
9
__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
You can’t perform that action at this time.
0 commit comments