diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 9a4687b..332e1ae 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,21 @@ +- commits: + - subject: Fix docs for `device.config_var.set` + hash: 4c42649e4f9145ded61330c3fbe83dbaadc811ce + body: "" + footer: + Change-type: patch + change-type: patch + author: Otavio Jacobi + - subject: Properly surface RequestErrors from balena-api + hash: 26400c206cd43038baf4e7a03d7c8bd0c85341a7 + body: "" + footer: + Change-type: patch + change-type: patch + author: Otavio Jacobi + version: 15.0.2 + title: "" + date: 2024-10-25T14:07:49.431Z - commits: - subject: "release: throw in case of trying to get a release with an empty string uuid" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f1ea25..fac43ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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/). +## v15.0.2 - 2024-10-25 + +* Fix docs for `device.config_var.set` [Otavio Jacobi] +* Properly surface RequestErrors from balena-api [Otavio Jacobi] + ## v15.0.1 - 2024-10-15 * Release: throw in case of trying to get a release with an empty string uuid [Otavio Jacobi] diff --git a/balena/__init__.py b/balena/__init__.py index 588802c..24ed57f 100644 --- a/balena/__init__.py +++ b/balena/__init__.py @@ -85,7 +85,7 @@ from .pine import PineClient from .settings import SettingsConfig, Settings -__version__ = "15.0.1" +__version__ = "15.0.2" class Balena: diff --git a/pyproject.toml b/pyproject.toml index 66e0b6f..560e0d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "balena-sdk" -version = "15.0.1" +version = "15.0.2" description = "" authors = ["Balena "] license = "Apache License 2.0"