Skip to content

Commit

Permalink
[ci skip] Version Changed from 0.1.6 -> 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoAcheron committed Dec 20, 2018
1 parent c5a2260 commit ef63718
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.6
current_version = 0.1.7

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion custom_components.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"climate.midea": {
"version": "0.1.6",
"version": "0.1.7",
"local_location": "/custom_components/climate/midea.py",
"remote_location": "https://raw.githubusercontent.com/NeoAcheron/midea-ac-py/master/midea.py",
"visit_repo": "https://github.com/NeoAcheron/midea-ac-py",
Expand Down
4 changes: 2 additions & 2 deletions midea.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
SUPPORT_ON_OFF, PLATFORM_SCHEMA)
from homeassistant.const import CONF_USERNAME, CONF_PASSWORD, TEMP_CELSIUS, TEMP_FAHRENHEIT, ATTR_TEMPERATURE

REQUIREMENTS = ['midea==0.1.6', 'pycryptodome==3.7.0']
VERSION = '0.1.6'
REQUIREMENTS = ['midea==0.1.7', 'pycryptodome==3.7.0']
VERSION = '0.1.7'

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion midea/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from midea.device import dehumidifier_device
from midea.device import unknown_device

VERSION = '0.1.6'
VERSION = '0.1.7'

DEVICE_TYPES = {
0xAC: air_conditioning_device,
Expand Down
2 changes: 1 addition & 1 deletion midea/cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# The Midea cloud client is by far the more obscure part of this library, and without some serious reverse engineering
# this would not have been possible. Thanks Yitsushi for the ruby implementation. This is an adaptation to Python 3

VERSION = '0.1.6'
VERSION = '0.1.7'


class cloud:
Expand Down
2 changes: 1 addition & 1 deletion midea/command.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import midea.crc8 as crc8

VERSION = '0.1.6'
VERSION = '0.1.7'


class base_command:
Expand Down
2 changes: 1 addition & 1 deletion midea/crc8.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = '0.1.6'
VERSION = '0.1.7'

# The huge CRC table! Aparently this can be generated, but storage space is cheap...
crc8_854_table = [
Expand Down
2 changes: 1 addition & 1 deletion midea/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from midea.command import set_command
from midea.packet_builder import packet_builder

VERSION = '0.1.6'
VERSION = '0.1.7'


class device:
Expand Down
2 changes: 1 addition & 1 deletion midea/packet_builder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

from midea.command import base_command

VERSION = '0.1.6'
VERSION = '0.1.7'


class packet_builder:
Expand Down
2 changes: 1 addition & 1 deletion midea/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from urllib.request import unquote
from Crypto.Cipher import AES

VERSION = '0.1.6'
VERSION = '0.1.7'

# Much secure, very null... IV of 0's... Why even have encryption at this point?
INITIALIZATION_VECTOR = b'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name='midea',
version='0.1.6',
version='0.1.7',
author="NeoAcheron",
author_email="[email protected]",
description="A library to control Midea appliances via the cloud API",
Expand Down

0 comments on commit ef63718

Please sign in to comment.