Skip to content

Commit bfb4627

Browse files
authored
Merge pull request #85 from 1Password/rc/0.1.0-beta.12
Release v0.1.0-beta.12
2 parents c2e62b2 + 4f5d242 commit bfb4627

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from sysconfig import get_platform
33
import platform
44
import os
5-
from src.release.version import SDK_VERSION
65

76
try:
87
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
@@ -44,7 +43,7 @@ def get_shared_library_data_to_include():
4443

4544
setup(
4645
name="onepassword",
47-
version=SDK_VERSION,
46+
version="0.1.0-beta.12",
4847
author="1Password",
4948
description="The 1Password Python SDK offers programmatic read access to your secrets in 1Password in an interface native to Python.",
5049
url="https://github.com/1Password/onepassword-sdk-python",

src/onepassword/defaults.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import platform
2-
from src.release.version import SDK_BUILD_NUMBER
32

43
SDK_LANGUAGE = "Python"
5-
SDK_VERSION = SDK_BUILD_NUMBER
4+
SDK_VERSION = "0010012"
65
DEFAULT_INTEGRATION_NAME = "Unknown"
76
DEFAULT_INTEGRATION_VERSION = "Unknown"
87
DEFAULT_REQUEST_LIBRARY = "net/http"

src/release/RELEASE-NOTES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This release includes:
2+
3+
- Support for reading and writing OTP field information such as the TOTP code and seed, through the Item API.
4+
- The `Update` operation is renamed to `Put` to create more realistic expectation with regard to the effect of the operation.
5+
- The item creation operation now takes as input `ItemCreateParams`.
6+
- Support for a few more field types: Phone, Url, CreditCardType.

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.11"
2-
SDK_BUILD_NUMBER = "0010011"
1+
SDK_VERSION = "0.1.0-beta.12"
2+
SDK_BUILD_NUMBER = "0010012"

0 commit comments

Comments
 (0)