diff --git a/CHANGELOG.md b/CHANGELOG.md index 453871c..ab7ba51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,12 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html ### Changed ### Fixed -## [1.44.0] - 2021-05-20 +## [1.44.1] - 2021-09-20 +### Fixed +- Fix metros URL used in Metro API lists #122 +- Catch TypeError when HardwareReservations do not have a device assignment #120 + +## [1.44.0] - 2021-05-19 ### Added - User-Agent header added to client requests #113 - `Metro` class added (https://feedback.equinixmetal.com/changelog/new-metros-feature-live) #110 diff --git a/packet/__init__.py b/packet/__init__.py index 4724de2..1d59ea5 100644 --- a/packet/__init__.py +++ b/packet/__init__.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # SPDX-License-Identifier: LGPL-3.0-only -"""library to interact with the Packet API""" +"""library to interact with the Equinix Metal API""" -__version__ = "1.44.0" +__version__ = "1.44.1" __author__ = "Equinix Metal Engineers" __author_email__ = "support@equinixmetal.com" __license__ = "LGPL v3"