File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1- # Version 0.12.0 - January xx , 2025
1+ # Version 0.12.0 - January 15 , 2025
22
33- Fixes https://github.com/open-quantum-safe/liboqs-python/issues/98 . The API
44 that NIST has introduced in
1010public_key)`
1111- When operations fail (i.e., ` OQS_SUCCESS != 0 ` ) in functions returning
1212 non-boolean objects, a ` RuntimeError ` is now raised, instead of returning 0
13+ - Bugfix on Linux, ` c_int ` -> ` c_size_t ` for buffer sizes
1314
1415# Version 0.10.0 - April 1, 2024
1516
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ See in particular limitations on intended use.
2424
2525## Release notes
2626
27- This release of liboqs-python was released on January xx , 2025. Its release
27+ This release of liboqs-python was released on January 15 , 2025. Its release
2828page on GitHub is
2929https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.12.0 .
3030
Original file line number Diff line number Diff line change @@ -75,4 +75,6 @@ def test_not_enabled():
7575
7676 nose2 .main ()
7777 except ImportError :
78- raise RuntimeError ("nose2 module not found, required to run the unit tests" )
78+ raise RuntimeError (
79+ "nose2 module not found. Please install it with 'pip install node2'."
80+ )
Original file line number Diff line number Diff line change @@ -120,4 +120,6 @@ def test_not_enabled():
120120
121121 nose2 .main ()
122122 except ImportError :
123- raise RuntimeError ("nose2 module not found, required to run the unit tests" )
123+ raise RuntimeError (
124+ "nose2 module not found. Please install it with 'pip install node2'."
125+ )
You can’t perform that action at this time.
0 commit comments