From f9ca76bb46f428e9110238c5919478cde1f6bc0c Mon Sep 17 00:00:00 2001 From: Joris Coenen Date: Mon, 5 Dec 2022 11:26:30 +0100 Subject: [PATCH 1/3] Prepare release v1.3.0 --- CHANGELOG.md | 26 +++++++++++++++++++------- pyproject.toml | 2 +- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 228ac15..e4c41e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,30 @@ -[//]: # "START/LATEST" - +[//]: # (START/LATEST) # Latest ## Features - -- A user-friendly description of a new feature. {issue-number} + * A user-friendly description of a new feature. {issue-number} ## Fixes - -- A user-friendly description of a fix. {issue-number} + * A user-friendly description of a fix. {issue-number} ## Security + * A user-friendly description of a security fix. {issue-number} + +--- + +[//]: # "START/v1.3.0" + +# v1.3.0 + +## Features + +- The TOTP code of a TOTP field can now be accessed using the `.totp` property of a field. {#33} +- Release of the SDK also includes `wheel` format. {#45} + +## Fixes -- A user-friendly description of a security fix. {issue-number} +- Sections without a label can now be correctly accessed. {#49} +- Retrieving an item no longer returns "Invalid value for `type`" or "Invalid value for `category`" when retrieving an item with a field type or item category that is not defined in the SDK. {#52,#54} --- diff --git a/pyproject.toml b/pyproject.toml index b0fb9b7..4b3e748 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "onepasswordconnectsdk" -version = "1.2.0" +version = "1.3.0" description = "Python SDK for 1Password Connect" license = "MIT" authors = ["1Password"] From e39d027972732022bed458424f65dc781fad0d48 Mon Sep 17 00:00:00 2001 From: Joris Coenen Date: Tue, 6 Dec 2022 15:06:06 +0100 Subject: [PATCH 2/3] Fix naming of OTP field --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4c41e5..33ced3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ ## Features -- The TOTP code of a TOTP field can now be accessed using the `.totp` property of a field. {#33} +- The TOTP code of a OTP field can now be accessed using the `.totp` property of a field. {#33} - Release of the SDK also includes `wheel` format. {#45} ## Fixes From 39b9cfe680da1348b0b8c3cee2c420c653dfb887 Mon Sep 17 00:00:00 2001 From: Joris Coenen Date: Tue, 6 Dec 2022 15:07:35 +0100 Subject: [PATCH 3/3] Remove internal change from changelog All past releases already have a wheel. The only thing that changed is that it's now added automatically. --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33ced3e..286142f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,6 @@ ## Features - The TOTP code of a OTP field can now be accessed using the `.totp` property of a field. {#33} -- Release of the SDK also includes `wheel` format. {#45} ## Fixes