From 5e6e998f8a262e88db75c6eb4eef9ec204d918c8 Mon Sep 17 00:00:00 2001 From: Vlad Gheorghiu Date: Wed, 5 Jan 2022 10:11:24 -0500 Subject: [PATCH] Version 0.7.1 --- CHANGES.txt | 7 ++++--- CMakeLists.txt | 2 +- Doxyfile | 2 +- RELEASE.md | 27 ++++++++++----------------- 4 files changed, 16 insertions(+), 22 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index a4a00ec..0011c3f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,12 +1,13 @@ -Pre-release +Version 0.7.1 - January 5, 2022 + - Release numbering updated to match liboqs - Integrated the unit tests with the main project, so now the unit tests are automatically compiled along with the examples, and can now be run by typing 'make test' or 'ctest'. Use 'GTEST_COLOR=1 ARGS="-V" make test' or 'GTEST_COLOR=1 ctest -V' for coloured verbose testing output. - CMake minimum required version bumped to 3.10 (3.12 for macOS) for automatic unit tests detection by CMake - - Switched continuous integration from Travis CI to CircleCI, we now support - macOS & Linux (CircleCI) and Windows (AppVeyor) + - Switched continuous integration from Travis CI to CircleCI, we now + support macOS & Linux (CircleCI) and Windows (AppVeyor) Version 0.4.0 - November 28, 2020 - Renamed 'master' branch to 'main' diff --git a/CMakeLists.txt b/CMakeLists.txt index 21c7871..85439b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(oqs_cpp VERSION 0.4.0 LANGUAGES CXX) +project(oqs_cpp VERSION 0.7.1 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/Doxyfile b/Doxyfile index 2d3dc86..40f87d4 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "liboqs-cpp" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.4.0 +PROJECT_NUMBER = 0.7.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/RELEASE.md b/RELEASE.md index fc4a0da..0e24901 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,34 +1,27 @@ -liboqs-cpp version 0.4.0 +liboqs-cpp version 0.7.1 ======================== About ----- -The **Open Quantum Safe (OQS) project** has the goal of developing and -prototyping quantum-resistant cryptography. More information on OQS can be found -on our website: https://openquantumsafe.org/ and on Github -at https://github.com/open-quantum-safe/. +The **Open Quantum Safe (OQS) project** has the goal of developing and prototyping quantum-resistant cryptography. More information on OQS can be found on our website: https://openquantumsafe.org/ and on Github at https://github.com/open-quantum-safe/. -**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** 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-cpp** is an open source C++ wrapper for the liboqs C library for -quantum-resistant cryptographic algorithms. Details about liboqs-cpp can be -found -in [README.md](https://github.com/open-quantum-safe/liboqs-cpp/blob/main/README.md) -. See in particular limitations on intended use. +**liboqs-cpp** is an open source C++ wrapper for the liboqs C library for quantum-resistant cryptographic algorithms. Details about liboqs-cpp can be found in [README.md](https://github.com/open-quantum-safe/liboqs-cpp/blob/main/README.md). See in particular limitations on intended use. Release notes ============= -This release of liboqs-cpp was released on November 28, 2020. Its release page -on GitHub is https://github.com/open-quantum-safe/liboqs-cpp/releases/tag/0.4.0. +This release of liboqs-cpp was released on January 5, 2022. Its release page on GitHub is https://github.com/open-quantum-safe/liboqs-cpp/releases/tag/0.7.1. What's New ---------- -This is the eight release of liboqs-cpp. For a list of changes +This is the ninth release of liboqs-cpp. + +This is an incremental minor change release. + +For a list of changes see [CHANGES.txt](https://github.com/open-quantum-safe/liboqs-cpp/blob/main/CHANGES.txt) .