From 08fbebb176b67219bb0b576c291ba206836753db Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Mon, 12 Aug 2024 16:18:41 +0200 Subject: [PATCH] Release v0.2.0-rc.1 --- .github/workflows/cd-pypi.yaml | 2 +- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd-pypi.yaml b/.github/workflows/cd-pypi.yaml index 7a10df8..5d7e1d0 100644 --- a/.github/workflows/cd-pypi.yaml +++ b/.github/workflows/cd-pypi.yaml @@ -25,7 +25,7 @@ jobs: shell: bash run: | VERSION_TAG="${{ github.event.release.tag_name }}" - if [[ $VERSION_TAG =~ ^v[0-9]+.[0-9]+.[0-9]+$ ]]; then exit 0; else exit 1; fi + if [[ $VERSION_TAG =~ ^v[0-9]+.[0-9]+.[0-9]+(-rc\.[1-9])?$ ]]; then exit 0; else exit 1; fi - name: Check if version tag and package version are equal shell: bash run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 97cc7c0..14ead47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +- + +[All Changes](https://github.com/Nitrokey/nitrokey-sdk-py/compare/v0.2.0-rc.1...HEAD) + +## [v0.2.0-rc.1](https://github.com/Nitrokey/nitrokey-sdk-py/releases/tag/v0.2.0-rc.1) (2024-08-12) + +This release refactors the code used for communication with the bootloader, reducing the number of dependencies. + ### Features - `trussed.admin_app`: Add error codes `CONFIG_ERROR` and `RNG_ERROR` to `InitStatus` enum @@ -12,6 +20,8 @@ - Vendor `spsdk` dependency to reduce the total number of dependencies - Replace `libusbsio` dependency with `hidapi` +[All Changes](https://github.com/Nitrokey/nitrokey-sdk-py/compare/v0.1.0...v0.2.0-rc.1) + ## [v0.1.0](https://github.com/Nitrokey/nitrokey-sdk-py/releases/tag/v0.1.0) (2024-07-29) Initial release with support for Nitrokey 3 and Nitrokey Passkey devices and the admin, provisioner and secrets app. diff --git a/pyproject.toml b/pyproject.toml index 2628b8d..7355d58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nitrokey" -version = "0.1.0" +version = "0.2.0-rc.1" description = "Nitrokey Python SDK" authors = ["Nitrokey "] license = "Apache-2.0 or MIT"