Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python_simplified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: GitHub actions simplified

on:
push:
branches: [ "**" ]
branches: ["**"]
pull_request:
branches: [ "**" ]
branches: ["**"]
repository_dispatch:
types: [ "**" ]
types: ["**"]

permissions:
contents: read
Expand All @@ -15,7 +15,7 @@ jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
Expand Down
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Pre-release
# Version 0.14.0 - August xx, 2025

- Added type checking and automatic linting/formatting, https://github.com/open-quantum-safe/liboqs-python/pull/97
- Added a utility function for de-structuring version strings in `oqs.py`
- `version(version_str: str) -> tuple[str, str, str]:` - Returns a tuple
containing the (major, minor, patch) versions
- A warning is issued only if the liboqs-python version's major and minor
numbers differ from those of liboqs, ignoring the patch version
- Added stateful signature support via the `StatefulSignature` class
- New enumeration helpers `get_enabled_stateful_sig_mechanisms()` and
`get_supported_stateful_sig_mechanisms()`
- ML-KEM keys can be generated from a seed via
`KeyEncapsulation.generate_keypair_seed()`.
- Minimum required Python 3 version bumped to 3.11

# Version 0.12.0 - January 15, 2025

Expand Down
12 changes: 2 additions & 10 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
# liboqs-python version 0.14.0

---
# Added in version 0.14.0 July 2025

- Added stateful signature support via the `StatefulSignature` class.
- New enumeration helpers `get_enabled_stateful_sig_mechanisms()` and
`get_supported_stateful_sig_mechanisms()`.
- Updated to liboqs 0.14.0.
- ML-KEM keys can be generated from a seed via
`KeyEncapsulation.generate_keypair_seed()`.

## About

Expand All @@ -32,13 +24,13 @@ See in particular limitations on intended use.

## Release notes

This release of liboqs-python was released on July 10, 2025. Its release
This release of liboqs-python was released on August xx, 2025. Its release
page on GitHub is
https://github.com/open-quantum-safe/liboqs-python/releases/tag/0.14.0.

---

## What's New

This is the 11th release of liboqs-python. For a list of changes see
This is the 12th release of liboqs-python. For a list of changes see
[CHANGES.md](https://github.com/open-quantum-safe/liboqs-python/blob/main/CHANGES.md).
Loading
Loading