From e489eb0944eb5ffa301411b455580d94eeeb3dfc Mon Sep 17 00:00:00 2001 From: clubby789 Date: Tue, 26 Oct 2021 21:52:14 +0100 Subject: [PATCH] Version bump (0.5.0) --- CHANGELOG.md | 7 +++++++ hackthebox/constants.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4114ba7..ca9bdbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.5.0] 26/10/2021 +### Added +- Caching mechanism ([docs](https://pyhackthebox.readthedocs.io/en/latest/htb.html)) +- Automatic prompting for details +### Fixed +- Handling some unusual API responses + ## [0.4.4] 24/10/2021 ### Added - Added the ability to spawn machines (both release arena and not) diff --git a/hackthebox/constants.py b/hackthebox/constants.py index 8fea62d..fa0101a 100644 --- a/hackthebox/constants.py +++ b/hackthebox/constants.py @@ -1,3 +1,3 @@ API_BASE = "https://www.hackthebox.eu/api/v4/" -USER_AGENT = "htb-api/0.4.4" +USER_AGENT = "htb-api/0.5.0" DOWNLOAD_COOLDOWN = 30