From eaef9201668841086fb7df2eb99fafa05513c83e Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Mon, 20 Sep 2021 17:31:09 -0400 Subject: [PATCH] prepare v1.44.1 Signed-off-by: Marques Johansson --- CHANGELOG.md | 7 ++++++- packet/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) 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"