From 18e2f5743a743970ed2968d768d9c10992334ab7 Mon Sep 17 00:00:00 2001 From: Jill Regan Date: Tue, 28 Apr 2026 10:05:41 -0400 Subject: [PATCH 1/2] Add change log --- CHANGELOG.md | 12 +++++++++++- pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7064ff6..392cb77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ --- +[//]: # (START/v2.1.0) +# v2.1.0 + +## Fixes + * Fix `new_client_from_environment()` to support optional token parameter, matching URL parameter behavior. {#88} + * Fix `get_item()` to successfully retrieve items with 26-character titles by adding fallback to title search when ID lookup fails. {#80} + * Updated Slack developer link in documentation. {#130} + +--- + [//]: # (START/v2.0.0) # v2.0.0 @@ -33,7 +43,7 @@ ## Fixes * Fix default http client timeout. {#102} - * Update override http client timeout env var name in readme. {#105} + * Update override http client timeout env var name in readme. {#105} --- diff --git a/pyproject.toml b/pyproject.toml index df766a6..3d3acf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "onepasswordconnectsdk" -version = "2.0.0" +version = "2.1.0" description = "Python SDK for 1Password Connect" license = "MIT" authors = ["1Password"] From 95e28f0d6558c85479e697a05e2071ed6f32baf7 Mon Sep 17 00:00:00 2001 From: Jill Regan Date: Tue, 5 May 2026 13:57:47 -0400 Subject: [PATCH 2/2] Move bullet to features --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 392cb77..4269893 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,8 +15,10 @@ [//]: # (START/v2.1.0) # v2.1.0 +## Features + * Update `new_client_from_environment()` to support optional token parameter, matching URL parameter behavior. {#88} + ## Fixes - * Fix `new_client_from_environment()` to support optional token parameter, matching URL parameter behavior. {#88} * Fix `get_item()` to successfully retrieve items with 26-character titles by adding fallback to title search when ID lookup fails. {#80} * Updated Slack developer link in documentation. {#130}