Skip to content

Commit 7816b31

Browse files
committed
0.7.2.10
1 parent d87a3b5 commit 7816b31

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

hassio/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "PIMA Alarms",
3-
"version": "0.7.2.9",
3+
"version": "0.7.2.10",
44
"slug": "pima",
55
"description": "Interface for negotiation with PIMA Hunter Pro alarms.",
66
"url": "https://github.com/deiger/Alarm",

new_version.sh

+2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@ git commit -a -m $NEW_VERSION
2222
git tag -d $NEW_VERSION
2323
git tag -a $NEW_VERSION -m "$NEW_VERSION_MSG"
2424
git push
25+
docker buildx rm --all-inactive --force
26+
docker buildx create --name multiarch --driver docker-container --use
2527
docker buildx build --platform linux/arm/v7,linux/arm64,linux/amd64,linux/386 -t deiger/pima:$NEW_VERSION --push .
2628
git push --tags

pima_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"""
2424

2525
__author__ = '[email protected] (Dror Eiger)'
26-
__version__ = '0.7.2.9'
26+
__version__ = '0.7.2.10'
2727

2828
import argparse
2929
from http.server import HTTPServer, BaseHTTPRequestHandler

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setuptools.setup(
1010
name='pima',
11-
version='0.7.2.9',
11+
version='0.7.2.10',
1212
description='Interface for negotiation with PIMA Hunter Pro alarms.',
1313
long_description=long_description,
1414
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)