Skip to content

Commit 9fb23d9

Browse files
committed
version bump 1.44.0 with CHANGELOG.md
Signed-off-by: Marques Johansson <[email protected]>
1 parent 3f5a978 commit 9fb23d9

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [1.44.0] - Unreleased
7+
## [1.45.0] - Unreleased
88
### Added
99
### Changed
1010
### Fixed
1111

12+
## [1.44.0] - 2021-05-20
13+
### Added
14+
- User-Agent header added to client requests #113
15+
- `Metro` class added (https://feedback.equinixmetal.com/changelog/new-metros-feature-live) #110
16+
- Adds `metro` property to `DeviceBatch`, `Device`, `IPAddress`, `VLan` #110
17+
- Adds `metro` to `create_device`, `reserve_ip_address`, `create_vlan`, `create_connection` #110
18+
- Adds `list_metros`, `validate_metro_capacity` to `Manager` #110
19+
- Adds `CODE_OF_CONDUCT.md`, `SUPPORT.md`, `OWNERS.md` #102, #101, #100
20+
- Adds package metadata for `author`, `author_email`, `copyright` #114
21+
### Changed
22+
- `facility` is now optional in `create_device`, `reserve_ip_address`, `create_vlan`, `create_connection` #110
23+
- CI is using GH Actions instead of Drone #115
24+
### Fixed
25+
- Handles when IPAddress Facility is null in API responses #117
26+
1227
## [1.43.1] - 2020-09-04
1328
### Fixed
1429
- ResponseError fixed for Python2.7 compatibility

packet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"""library to interact with the Packet API"""
55

6-
__version__ = "1.43.1"
6+
__version__ = "1.44.0"
77
__author__ = "Equinix Metal Engineers"
88
__author_email__ = "[email protected]"
99
__license__ = "LGPL v3"

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ def get_version(rel_path):
3434
setup(
3535
name="packet-python",
3636
version=get_version("packet/__init__.py"),
37-
description="Packet API client",
37+
description="Equinix Metal (Packet) API client",
3838
long_description=long_description,
3939
long_description_content_type="text/markdown",
4040
url="https://github.com/packethost/packet-python",
4141
author="Equinix Metal Developers",
4242
author_email="[email protected]",
4343
license="LGPL v3",
44-
keywords="packet api client",
44+
keywords="equinix metal packet api client infrastructure",
4545
packages=["packet"],
4646
install_requires="requests",
4747
setup_requires=["pytest-runner"],
@@ -50,6 +50,7 @@ def get_version(rel_path):
5050
"Development Status :: 5 - Production/Stable",
5151
"Intended Audience :: Developers",
5252
"Intended Audience :: Information Technology",
53+
"Topic :: Software Development :: Libraries",
5354
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
5455
"Programming Language :: Python :: 2",
5556
"Programming Language :: Python :: 2.7",
@@ -58,5 +59,7 @@ def get_version(rel_path):
5859
"Programming Language :: Python :: 3.5",
5960
"Programming Language :: Python :: 3.6",
6061
"Programming Language :: Python :: 3.7",
62+
"Programming Language :: Python :: 3.8",
63+
"Programming Language :: Python :: 3.9",
6164
],
6265
)

0 commit comments

Comments
 (0)