Skip to content
This repository was archived by the owner on Jun 7, 2021. It is now read-only.

Commit 1d07b2d

Browse files
committed
Update version and changelog.
1 parent 96a9def commit 1d07b2d

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [2.7, 3.5, 3.6, 3.7]
11+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
1212

1313
steps:
1414
- uses: actions/checkout@v1

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [0.12.1] - 2020-01-13
6+
### Changed
7+
- Abstracted WebSocket subscriber class to allow library to work with other web frameworks.
8+
59
## [0.12.0] - 2019-07-12
610
### Changed
711
- Things now use `title` rather than `name`.
@@ -32,7 +36,8 @@
3236
### Changed
3337
- Property, Action, and Event description now use `links` rather than `href`. - [Spec PR](https://github.com/mozilla-iot/wot/pull/119)
3438

35-
[Unreleased]: https://github.com/mozilla-iot/webthing-python/compare/v0.12.0...HEAD
39+
[Unreleased]: https://github.com/mozilla-iot/webthing-python/compare/v0.12.1...HEAD
40+
[0.12.0]: https://github.com/mozilla-iot/webthing-python/compare/v0.12.0...v0.12.1
3641
[0.12.0]: https://github.com/mozilla-iot/webthing-python/compare/v0.11.3...v0.12.0
3742
[0.11.3]: https://github.com/mozilla-iot/webthing-python/compare/v0.11.2...v0.11.3
3843
[0.11.2]: https://github.com/mozilla-iot/webthing-python/compare/v0.11.1...v0.11.2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
setup(
4141
name='webthing',
42-
version='0.12.0',
42+
version='0.12.1',
4343
description='HTTP Web Thing implementation',
4444
long_description=long_description,
4545
url='https://github.com/mozilla-iot/webthing-python',
@@ -57,6 +57,7 @@
5757
'Programming Language :: Python :: 3.5',
5858
'Programming Language :: Python :: 3.6',
5959
'Programming Language :: Python :: 3.7',
60+
'Programming Language :: Python :: 3.8',
6061
],
6162
license='MPL-2.0',
6263
project_urls={

0 commit comments

Comments
 (0)