Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from sysconfig import get_platform
import platform
import os
from src.release.version import SDK_VERSION

try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
Expand Down Expand Up @@ -44,7 +43,7 @@ def get_shared_library_data_to_include():

setup(
name="onepassword",
version=SDK_VERSION,
version="0.1.0-beta.12",
author="1Password",
description="The 1Password Python SDK offers programmatic read access to your secrets in 1Password in an interface native to Python.",
url="https://github.com/1Password/onepassword-sdk-python",
Expand Down
3 changes: 1 addition & 2 deletions src/onepassword/defaults.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import platform
from src.release.version import SDK_BUILD_NUMBER

SDK_LANGUAGE = "Python"
SDK_VERSION = SDK_BUILD_NUMBER
SDK_VERSION = "0010012"
DEFAULT_INTEGRATION_NAME = "Unknown"
DEFAULT_INTEGRATION_VERSION = "Unknown"
DEFAULT_REQUEST_LIBRARY = "net/http"
Expand Down
6 changes: 6 additions & 0 deletions src/release/RELEASE-NOTES
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This release includes:

- Support for reading and writing OTP field information such as the TOTP code and seed, through the Item API.
- The `Update` operation is renamed to `Put` to create more realistic expectation with regard to the effect of the operation.
- The item creation operation now takes as input `ItemCreateParams`.
- Support for a few more field types: Phone, Url, CreditCardType.
4 changes: 2 additions & 2 deletions src/release/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SDK_VERSION = "0.1.0-beta.11"
SDK_BUILD_NUMBER = "0010011"
SDK_VERSION = "0.1.0-beta.12"
SDK_BUILD_NUMBER = "0010012"