Skip to content

Commit

Permalink
Merge pull request #132 from ikalchev/v2.2.2
Browse files Browse the repository at this point in the history
Merge release v2.2.2 into master
  • Loading branch information
ikalchev authored May 29, 2018
2 parents c515fcb + d0ed617 commit 88f217b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ Sections
### Developers
-->

## [2.2.1] - 2018-05-29
## [2.2.2] - 2018-05-29

### Fixed
- Spelling mistake in `setup.cfg` that caused broken builds. [#130](https://github.com/ikalchev/HAP-python/pull/130)



## [2.2.1] - 2018-05-29 - Broken

### Fixed
- Package data is now included again. [#128](https://github.com/ikalchev/HAP-python/pull/128)
Expand Down
2 changes: 1 addition & 1 deletion pyhap/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""This module contains constants used by other modules."""
MAJOR_VERSION = 2
MINOR_VERSION = 2
PATCH_VERSION = 1
PATCH_VERSION = 2
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 5)
Expand Down
9 changes: 3 additions & 6 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ set -e

cd "$(dirname "$0")/.."

# Install missing dependencies
if [ -z "$(python3 -m pip list | grep 'wheel')" ]; then
python3 -m pip install wheel
fi
if [ -z "$(python3 -m pip list | grep 'twine')" ]; then
python3 -m pip install twine
# Remove previous build
if [ -n "$(ls | grep 'build')" ]; then
rm -r build/
fi

echo "====================================="
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifier =

[options]
packages = pyhap
include_package_date = true
include_package_data = true
install_requires =
curve25519-donna
ed25519
Expand Down

0 comments on commit 88f217b

Please sign in to comment.