Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Nov 28, 2020
1 parent c75ab21 commit b00229c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- checkout # change this from "checkout" to "*localCheckout" when running CircleCI locally
- run:
name: Clone liboqs
command: git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/liboqs.git
command: git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/liboqs
working_directory: /root
- run:
name: Build liboqs
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.4.0 - November 28, 2020
- Renamed 'master' branch to 'main'

Version 0.3.0 - June 10, 2020
- Disabled unit testing for McEliece and Rainbow-IIIc/Vc under Windows
(stack size too small)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ We believe that the NIST Post-Quantum Cryptography standardization project is cu

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.

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.
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.

License
-------

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.
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.

Team
----
Expand Down
10 changes: 5 additions & 5 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
liboqs-python version 0.3.0
liboqs-python version 0.4.0
===========================

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

**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.

**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.
**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.

Release notes
=============

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.
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.

What's New
----------

This is the fourth release of liboqs-python.
This is the fifth release of liboqs-python.

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

For a list of changes see [CHANGES.txt](https://github.com/open-quantum-safe/liboqs-python/blob/master/CHANGES.txt).
For a list of changes see [CHANGES.txt](https://github.com/open-quantum-safe/liboqs-python/blob/main/CHANGES.txt).
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='liboqs-python',
version='0.3.0',
version='0.4.0',
author='Open Quantum Safe project',
author_email='[email protected]',
packages=find_packages(exclude=('tests', 'docs', 'examples')),
Expand Down

0 comments on commit b00229c

Please sign in to comment.