diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 465542c1..6d4b55e2 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,18 @@ +- commits: + - subject: Fix typo in /v2/applications/:appId/restart-service Supervisor API call + hash: 811403f98c555e8ec1dde65005194fae143d215d + body: "" + footer: + Change-type: patch + change-type: patch + Closes: "#354" + closes: "#354" + Signed-off-by: Christina Ying Wang + signed-off-by: Christina Ying Wang + author: Christina Ying Wang + version: 14.4.4 + title: "" + date: 2024-05-24T19:55:13.993Z - commits: - subject: Force test email to contains "+testsdk" hash: 2a3b5a32401a5cefcfce2d33d64be10268755724 diff --git a/CHANGELOG.md b/CHANGELOG.md index bda3ee59..ea202a9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +## v14.4.4 - 2024-05-24 + +* Fix typo in /v2/applications/:appId/restart-service Supervisor API call [Christina Ying Wang] + ## v14.4.3 - 2024-05-24 * Force test email to contains "+testsdk" [Otavio Jacobi] diff --git a/balena/__init__.py b/balena/__init__.py index d12de967..2821c2b0 100644 --- a/balena/__init__.py +++ b/balena/__init__.py @@ -85,7 +85,7 @@ from .pine import PineClient from .settings import SettingsConfig, Settings -__version__ = "14.4.3" +__version__ = "14.4.4" class Balena: diff --git a/pyproject.toml b/pyproject.toml index fa8b6288..2acb0f42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "balena-sdk" -version = "14.4.3" +version = "14.4.4" description = "" authors = ["Balena "] license = "Apache License 2.0"