Skip to content

Commit a09c6cb

Browse files
committed
Version 0.12
Signed-off-by: Vlad Gheorghiu <[email protected]>
1 parent 2535fb1 commit a09c6cb

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
@@ -10,6 +10,7 @@
1010
public_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

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
2828
page on GitHub is
2929
https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.12.0.
3030

tests/test_kem.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
)

tests/test_sig.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
)

0 commit comments

Comments
 (0)