Skip to content

Commit bba47a9

Browse files
authored
1.2.4 (#8)
* add yarl as dependency * bump version to 1.2.2 * update changelog * 1.2.3 * version bump to 1.2.4 * change yarl dependencies
1 parent c3dc061 commit bba47a9

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.2.4 (2024-02-08)
2+
3+
* change yarl dependencies
4+
5+
## 1.2.3 (2024-02-08)
6+
7+
* change aiohttp dependencies
8+
9+
## 1.2.2 (2024-02-07)
10+
11+
* add yarl as dependency
12+
113
## 1.2.1 (2024-02-07)
214

315
* add timing loggin for zone/site updates

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyadtpulse/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Constants for pyadtpulse."""
22

3-
__version__ = "1.2.1"
3+
__version__ = "1.2.4"
44

55
DEFAULT_API_HOST = "https://portal.adtpulse.com"
66
API_HOST_CA = "https://portal-ca.adtpulse.com" # Canada

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyadtpulse"
3-
version = "1.2.1"
3+
version = "1.2.4"
44
description = "Python interface for ADT Pulse security systems"
55
authors = ["Ryan Snodgrass"]
66
maintainers = ["Robert Lippmann"]
@@ -16,11 +16,12 @@ classifiers = [
1616

1717
[tool.poetry.dependencies]
1818
python = "^3.11"
19-
aiohttp = "^3.9.3"
19+
aiohttp = ">=3.8.5, < 4.0"
2020
beautifulsoup4 = "^4.12.2"
2121
uvloop = "^0.19.0"
2222
bs4 = "^0.0.1"
2323
typeguard = "^4.1.5"
24+
yarl = ">=1.9, < 2.0"
2425

2526

2627
[tool.poetry.urls]

0 commit comments

Comments
 (0)