Skip to content

Commit 8cc0626

Browse files
authored
Merge pull request #110 from kzosabe/prepare-0.4.1
Prepare 0.4.1
2 parents 718facd + 2f587ca commit 8cc0626

5 files changed

Lines changed: 22 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.4.1, 2022-10-22
2+
-------------------------
3+
4+
- Add new devices
5+
- Robot Vacuum Cleaner S1, Robot Vacuum Cleaner S1 Plus
6+
- Add information about upgrading to API v1.1
7+
- The switchbot API has been updated from v1.0 to v1.1
8+
- v1.0-compliant implementations will be finalized in this version,
9+
and v1.1-compliant development will proceed in switchbot-client-1.x.x
10+
111
0.4.0, 2022-05-24
212
-------------------------
313

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88

99
An unofficial Python client implementation of the SwitchBot API.
1010

11+
## About this version
12+
13+
switchbot-client-0.x.x is the implementation for [SwitchBot API version 1.0](https://github.com/OpenWonderLabs/SwitchBotAPI/blob/main/README-v1.0.md).
14+
The implementation for API version 1.1 or later will proceed with switchbot-client-1.x.x.
15+
Please select the library version according to the API version you use.
16+
Development of switchbot-client-0.x.x will likely cease with the SwitchBot API version update, and we recommend moving to 1.x.x.
17+
1118
## Table of Contents
1219

1320
- [Authentication](#authentication)
@@ -31,7 +38,7 @@ this client will automatically use this value.
3138

3239
```shell
3340
export SWITCHBOT_OPEN_TOKEN=your_switchbot_open_token
34-
python3 your_script.py
41+
python your_script.py
3542
```
3643

3744
```python
@@ -62,7 +69,7 @@ this client will automatically use the value.
6269
```shell
6370
mkdir -p ~/.config/switchbot-client
6471
echo "token: your_switchbot_open_token" >> ~/.config/switchbot-client/config.yml
65-
python3 your_script.py
72+
python your_script.py
6673
```
6774

6875
```python

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
project = "switchbot-client"
66
copyright = "2021, kzosabe"
77
author = "kzosabe"
8-
release = "0.4.0"
8+
release = "0.4.1"
99
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon"]
1010
templates_path = ["_templates"]
1111
exclude_patterns = ["_build", ".DS_Store"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "switchbot-client"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "A Python client library for SwitchBot API."
55
license = "Apache-2.0 or MIT"
66
authors = [

switchbot_client/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
class AppConstants:
2-
VERSION = "0.3.2"
2+
VERSION = "0.4.1"

0 commit comments

Comments
 (0)