Skip to content

Commit 02198f9

Browse files
committed
Version 0.10.0
1 parent c066152 commit 02198f9

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Version 0.10.0 - March 28, 2024
1+
# Version 0.10.0 - April 1, 2024
22

33
- Replaced CHANGES by
44
[CHANGES.md](https://github.com/open-quantum-safe/liboqs-python/blob/main/CHANGES.md),
55
as we now use Markdown format to keep track of changes in new releases
66
- Removed the NIST PRNG as the latter is no longer exposed by liboqs' public
77
API
8-
- liboqs is now installed automatically if not detected at runtime
8+
- liboqs is installed automatically if it is not detected at runtime
99

1010
# Version 0.9.0 - October 30, 2023
1111

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ The project contains the following files and directories:
3333
## Pre-requisites
3434

3535
- [liboqs](https://github.com/open-quantum-safe/liboqs)
36-
- [CMake](https://cmake.org/)
36+
- [git](https://git-scm.com/) version control system
37+
- [CMake](https://cmake.org/) build system
3738
- C compliant compiler,
3839
e.g., [gcc](https://gcc.gnu.org/), [clang](https://clang.llvm.org),
3940
[MSVC](https://visualstudio.microsoft.com/vs/) etc.
@@ -80,21 +81,20 @@ an alternative path, e.g., `C:\liboqs`, by passing the
8081
`-DCMAKE_INSTALL_PREFIX=/path/to/liboqs` flag to CMake, e.g.,
8182

8283
```shell
83-
cmake -S liboqs -B liboqs/build -DCMAKE_INSTALL_PREFIX="C:\liboqs" -DBUILD_SHARED_LIBS=ON
84+
cmake -S liboqs -B liboqs/build -DCMAKE_INSTALL_PREFIX="C:\liboqs" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE -DBUILD_SHARED_LIBS=ON
8485
```
8586

8687
### Let liboqs-python install liboqs automatically
8788

88-
If you want to avoid installing liboqs manually (as detailed in the step
89-
above), then you can skip the step above and let the liboqs-python wrapper try
90-
to install it for you automatically, as follows.
91-
92-
When liboqs is not detected at runtime by liboqs-python, it will be downloaded,
89+
If liboqs is not detected at runtime by liboqs-python, it will be downloaded,
9390
configured and installed automatically (as a shared library). This process will
9491
be performed only once, at runtime, i.e., when loading the liboqs-python
9592
wrapper. The liboqs source directory will be automatically removed at the end
9693
of the process.
9794

95+
This is convenient in case you want to avoid installing liboqs manually, as
96+
described in the subsection above.
97+
9898
### Install and activate a Python virtual environment
9999

100100
Execute in a Terminal/Console/Administrator Command Prompt

RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ See in particular limitations on intended use.
2424

2525
## Release notes
2626

27-
This release of liboqs-python was released on October 30, 2023. Its release
27+
This release of liboqs-python was released on April 1, 2024. Its release
2828
page on GitHub is
29-
https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.9.0.
29+
https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.10.0.
3030

3131
---
3232

oqs/oqs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def _install_liboqs(target_directory, oqs_version=None):
9595
if oqs_version:
9696
oqs_install_str += " --branch " + oqs_version
9797
oqs_install_str += (
98-
" --depth 1 && cmake -S liboqs -B liboqs/build -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX="
98+
" --depth 1 && cmake -S liboqs -B liboqs/build -DBUILD_SHARED_LIBS=ON -DOQS_BUILD_ONLY_LIB=ON -DCMAKE_INSTALL_PREFIX="
9999
+ target_directory
100100
)
101101
if platform.system() == "Windows":

0 commit comments

Comments
 (0)