Skip to content

Commit d31f0f1

Browse files
committed
bump the version, add changelog
1 parent e076e71 commit d31f0f1

File tree

3 files changed

+60
-2
lines changed

3 files changed

+60
-2
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Changelog
2+
3+
## [0.0.4](https://github.com/rytilahti/python-yeelightbt/tree/0.0.4) (2019-02-26)
4+
5+
[Full Changelog](https://github.com/rytilahti/python-yeelightbt/compare/0.0.3.1...0.0.4)
6+
7+
**Closed issues:**
8+
9+
- object has no attribute 'update\_ha\_state' [\#27](https://github.com/rytilahti/python-yeelightbt/issues/27)
10+
- Error message [\#25](https://github.com/rytilahti/python-yeelightbt/issues/25)
11+
- yeelightbt got error, is it due to phyton version2? [\#23](https://github.com/rytilahti/python-yeelightbt/issues/23)
12+
- which file should i copy to custom\_components? [\#22](https://github.com/rytilahti/python-yeelightbt/issues/22)
13+
- Cannot import name 'SymmetricMapping' [\#18](https://github.com/rytilahti/python-yeelightbt/issues/18)
14+
- Issues \(different\) on both PY2.7 and PY3.5 [\#17](https://github.com/rytilahti/python-yeelightbt/issues/17)
15+
- from Construct developer, a note [\#15](https://github.com/rytilahti/python-yeelightbt/issues/15)
16+
17+
**Merged pull requests:**
18+
19+
- Support more recent construct releases [\#28](https://github.com/rytilahti/python-yeelightbt/pull/28) ([arekbulski](https://github.com/arekbulski), [rytilahti](https://github.com/rytilahti))
20+
- Update color parameter in HA component [\#20](https://github.com/rytilahti/python-yeelightbt/pull/20) ([vladisnik](https://github.com/vladisnik))
21+
22+
## [0.0.3.1](https://github.com/rytilahti/python-yeelightbt/tree/0.0.3.1) (2018-02-04)
23+
24+
[Full Changelog](https://github.com/rytilahti/python-yeelightbt/compare/0.0.3...0.0.3.1)
25+
26+
**Closed issues:**
27+
28+
- Error while running [\#14](https://github.com/rytilahti/python-yeelightbt/issues/14)
29+
- Installation Problem [\#13](https://github.com/rytilahti/python-yeelightbt/issues/13)
30+
- state-request works but control doesn't work [\#11](https://github.com/rytilahti/python-yeelightbt/issues/11)
31+
- Multiple lamps [\#10](https://github.com/rytilahti/python-yeelightbt/issues/10)
32+
33+
## [0.0.3](https://github.com/rytilahti/python-yeelightbt/tree/0.0.3) (2018-02-04)
34+
35+
[Full Changelog](https://github.com/rytilahti/python-yeelightbt/compare/v0.0.2...0.0.3)
36+
37+
**Closed issues:**
38+
39+
- homeassistant Unable to load plug-in [\#9](https://github.com/rytilahti/python-yeelightbt/issues/9)
40+
- Scan without --mac [\#8](https://github.com/rytilahti/python-yeelightbt/issues/8)
41+
- Traceback \(most recent call last\) on scan [\#7](https://github.com/rytilahti/python-yeelightbt/issues/7)
42+
- Ha plugin installation error [\#6](https://github.com/rytilahti/python-yeelightbt/issues/6)
43+
- Ha plugin installation consulting [\#5](https://github.com/rytilahti/python-yeelightbt/issues/5)
44+
- yeelightbt scan [\#4](https://github.com/rytilahti/python-yeelightbt/issues/4)
45+
46+
## [v0.0.2](https://github.com/rytilahti/python-yeelightbt/tree/v0.0.2) (2017-02-02)
47+
48+
[Full Changelog](https://github.com/rytilahti/python-yeelightbt/compare/5e3f8e55143d55fe82d77793a5535157be34a564...v0.0.2)
49+
50+
**Closed issues:**
51+
52+
- ImportError: No module named main [\#3](https://github.com/rytilahti/python-yeelightbt/issues/3)
53+
- trace [\#2](https://github.com/rytilahti/python-yeelightbt/issues/2)
54+
- Can't install in homeassistant [\#1](https://github.com/rytilahti/python-yeelightbt/issues/1)
55+
56+
57+
58+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
setup(
66
name='python-yeelightbt',
77

8-
version='0.0.3.1',
8+
version=__version__,
99
description='Python library for interfacing with yeelight\'s bt lights',
1010
url='https://github.com/rytilahti/python-yeelightbt',
1111

yeelightbt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# flake8: noqa
2-
__version__ = "0.0.2"
2+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)