From 81011bba20b78712348f10410c153d6ba61b74b2 Mon Sep 17 00:00:00 2001 From: "flowzone-app[bot]" <124931076+flowzone-app[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 17:17:28 +0000 Subject: [PATCH] v15.0.1 --- .versionbot/CHANGELOG.yml | 19 +++++++++++++++++++ CHANGELOG.md | 5 +++++ balena/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index f208569b..9a4687bb 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,22 @@ +- commits: + - subject: "release: throw in case of trying to get a release with an empty string + uuid" + hash: 6d5d043bba744025650eb73afa51927887acafc6 + body: "" + footer: + Change-type: patch + change-type: patch + author: Otavio Jacobi + - subject: "device: do not operate on empty or ambiguous device UUIDs" + hash: 473425882b89a02ee3227e51fab613c77e8f66e9 + body: "" + footer: + Change-type: patch + change-type: patch + author: Otavio Jacobi + version: 15.0.1 + title: "" + date: 2024-10-15T17:17:20.121Z - commits: - subject: "v7 model: Add the device.should_be_operated_by__release property" hash: 1328499d9aa31fe2e0c456b7a1e35d951ccec5dd diff --git a/CHANGELOG.md b/CHANGELOG.md index d1685911..1f1ea255 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.1 - 2024-10-15 + +* Release: throw in case of trying to get a release with an empty string uuid [Otavio Jacobi] +* Device: do not operate on empty or ambiguous device UUIDs [Otavio Jacobi] + ## v15.0.0 - 2024-09-18 * V7 model: Add the device.should_be_operated_by__release property [Otavio Jacobi] diff --git a/balena/__init__.py b/balena/__init__.py index 4aa131e5..588802cd 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.0" +__version__ = "15.0.1" class Balena: diff --git a/pyproject.toml b/pyproject.toml index 44aaf923..66e0b6f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "balena-sdk" -version = "15.0.0" +version = "15.0.1" description = "" authors = ["Balena "] license = "Apache License 2.0"