Skip to content

Commit b2640d4

Browse files
authored
Merge pull request #93 from 1Password/rc/0.1.0
Release v0.1.0
2 parents 2cc08ae + d611f68 commit b2640d4

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_shared_library_data_to_include():
4343

4444
setup(
4545
name="onepassword",
46-
version="0.1.0-beta.13",
46+
version="0.1.0",
4747
author="1Password",
4848
description="The 1Password Python SDK offers programmatic read access to your secrets in 1Password in an interface native to Python.",
4949
url="https://github.com/1Password/onepassword-sdk-python",

src/onepassword/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import platform
22

33
SDK_LANGUAGE = "Python"
4-
SDK_VERSION = "0010013"
4+
SDK_VERSION = "0010014"
55
DEFAULT_INTEGRATION_NAME = "Unknown"
66
DEFAULT_INTEGRATION_VERSION = "Unknown"
77
DEFAULT_REQUEST_LIBRARY = "net/http"

src/release/RELEASE-NOTES

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
In this release:
1+
This is the v0 release of the 1Password Python SDK.
22

3-
* support for listing items and vaults is introduced
4-
* a bug where concurrent item updates could lead to unexpected overwrites is fixed
5-
* a bug where the SDK was priorly not working with service account tokens generated by the 1Password CLI is fixed
6-
* a bug where the items created by the SDK priorly did not have the password strength set correctly is fixed
3+
The 1Password Python SDK allows you to build secrets management integrations that can programmatically access secrets stored in 1Password. With this SDK, you can:
4+
5+
- [Securely load secrets](https://developer.1password.com/docs/sdks/load-secrets/) from 1Password into your code with secret references.
6+
- [Read, write, and update secrets](https://developer.1password.com/docs/sdks/manage-items/) stored in 1Password, including passwords, API keys, and one-time passwords.
7+
- [List items and vaults](https://developer.1password.com/docs/sdks/list-vaults-items/) in a 1Password account.

src/release/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SDK_VERSION = "0.1.0-beta.13"
2-
SDK_BUILD_NUMBER = "0010013"
1+
SDK_VERSION = "0.1.0"
2+
SDK_BUILD_NUMBER = "0010014"

0 commit comments

Comments
 (0)