Skip to content

Commit

Permalink
Prepare release 5.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Apr 17, 2023
1 parent 01b665e commit 4abe6b5
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 86 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.2'
python-version: '3.11.3'
cache: poetry

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.2'
python-version: '3.11.3'
cache: poetry

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.2'
python-version: '3.11.3'
cache: poetry

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* Version 5.1.0 (unreleased)
* Version 5.1.0 (released 2023-04-17)
** Add OpenPGP functionality to supported API.
** Add PIV key info command to CLI.
** PIV: Support signing prehashed data via API.
Expand Down
2 changes: 1 addition & 1 deletion generate-man.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
[\fI\,OPTIONS\/\fR] \fI\,COMMAND \/\fR[\fI\,ARGS\/\fR]..."""
)

help_text = check_output(["ykman", "--help"]).decode()
help_text = check_output(["poetry", "run", "ykman", "--help"]).decode()
parts = re.split(r"\b[A-Z][a-z]+:\s+", help_text)
description = re.split(r"\s{2,}", parts[1])[1].strip()

Expand Down
2 changes: 1 addition & 1 deletion man/ykman.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH YKMAN "1" "January 2023" "ykman 5.0.1" "User Commands"
.TH YKMAN "1" "April 2023" "ykman 5.1.0" "User Commands"
.SH NAME
ykman \- YubiKey Manager (ykman)
.SH SYNOPSIS
Expand Down
130 changes: 53 additions & 77 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yubikey-manager"
version = "5.1.0-dev.0"
version = "5.1.0"
description = "Tool for managing your YubiKey configuration."
authors = ["Dain Nilsson <[email protected]>"]
license = "BSD"
Expand Down Expand Up @@ -28,7 +28,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.7"
cryptography = ">=3.0, <42"
cryptography = ">=3.0, <43"
pyscard = "^2.0"
fido2 = "^1.0"
click = "^8.0"
Expand Down
2 changes: 1 addition & 1 deletion ykman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

__version__ = "5.1.0-dev.0"
__version__ = "5.1.0"

0 comments on commit 4abe6b5

Please sign in to comment.