Skip to content

Commit b00229c

Browse files
committed
Version 0.4.0
1 parent c75ab21 commit b00229c

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- checkout # change this from "checkout" to "*localCheckout" when running CircleCI locally
1313
- run:
1414
name: Clone liboqs
15-
command: git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/liboqs.git
15+
command: git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/liboqs
1616
working_directory: /root
1717
- run:
1818
name: Build liboqs

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 0.4.0 - November 28, 2020
2+
- Renamed 'master' branch to 'main'
3+
14
Version 0.3.0 - June 10, 2020
25
- Disabled unit testing for McEliece and Rainbow-IIIc/Vc under Windows
36
(stack size too small)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ We believe that the NIST Post-Quantum Cryptography standardization project is cu
119119

120120
We acknowledge that some parties may want to begin deploying post-quantum cryptography prior to the conclusion of the NIST standardization project. We strongly recommend that any attempts to do make use of so-called **hybrid cryptography**, in which post-quantum public-key algorithms are used alongside traditional public key algorithms (like RSA or elliptic curves) so that the solution is at least no less secure than existing traditional cryptography.
121121

122-
Just like liboqs, liboqs-python is provided "as is", without warranty of any kind. See [LICENSE.txt](https://github.com/open-quantum-safe/liboqs-python/blob/master/LICENSE.txt) for the full disclaimer.
122+
Just like liboqs, liboqs-python is provided "as is", without warranty of any kind. See [LICENSE.txt](https://github.com/open-quantum-safe/liboqs-python/blob/main/LICENSE.txt) for the full disclaimer.
123123

124124
License
125125
-------
126126

127-
liboqs-python is licensed under the MIT License; see [LICENSE.txt](https://github.com/open-quantum-safe/liboqs-python/blob/master/LICENSE.txt) for details.
127+
liboqs-python is licensed under the MIT License; see [LICENSE.txt](https://github.com/open-quantum-safe/liboqs-python/blob/main/LICENSE.txt) for details.
128128

129129
Team
130130
----

RELEASE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
liboqs-python version 0.3.0
1+
liboqs-python version 0.4.0
22
===========================
33

44
About
@@ -8,18 +8,18 @@ The **Open Quantum Safe (OQS) project** has the goal of developing and prototypi
88

99
**liboqs** is an open source C library for quantum-resistant cryptographic algorithms. See more about liboqs at [https://github.com/open-quantum-safe/liboqs/](https://github.com/open-quantum-safe/liboqs/), including a list of supported algorithms.
1010

11-
**liboqs-python** is an open source Python 3 wrapper for the liboqs C library for quantum-resistant cryptographic algorithms. Details about liboqs-python can be found in [README.md](https://github.com/open-quantum-safe/liboqs-python/blob/master/README.md). See in particular limitations on intended use.
11+
**liboqs-python** is an open source Python 3 wrapper for the liboqs C library for quantum-resistant cryptographic algorithms. Details about liboqs-python can be found in [README.md](https://github.com/open-quantum-safe/liboqs-python/blob/main/README.md). See in particular limitations on intended use.
1212

1313
Release notes
1414
=============
1515

16-
This release of liboqs-python was released on June 10, 2020. Its release page on GitHub is https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.3.0.
16+
This release of liboqs-python was released on November 28, 2020. Its release page on GitHub is https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.4.0.
1717

1818
What's New
1919
----------
2020

21-
This is the fourth release of liboqs-python.
21+
This is the fifth release of liboqs-python.
2222

2323
This release added AppVeyor continuous integration and it is now fully supported on Windows.
2424

25-
For a list of changes see [CHANGES.txt](https://github.com/open-quantum-safe/liboqs-python/blob/master/CHANGES.txt).
25+
For a list of changes see [CHANGES.txt](https://github.com/open-quantum-safe/liboqs-python/blob/main/CHANGES.txt).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='liboqs-python',
7-
version='0.3.0',
7+
version='0.4.0',
88
author='Open Quantum Safe project',
99
author_email='[email protected]',
1010
packages=find_packages(exclude=('tests', 'docs', 'examples')),

0 commit comments

Comments
 (0)