From df5c3531e52102ca060b0f53cc6706afb4140ea0 Mon Sep 17 00:00:00 2001 From: Simone Orru Date: Thu, 22 Feb 2024 09:49:21 +0100 Subject: [PATCH] Prepare release 0.12.1 Signed-off-by: Simone Orru --- CHANGELOG.md | 2 +- astarte/device/__init__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 609caac3..f4161614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.12.1] - Unreleased +## [0.12.1] - 2024-02-22 ### Fixed - False values on boolean endpoints for server owned interfaces are correctly processed. - Dependency `paho-mqtt` is locked to v1.6.1 due to incompatibility with the latest version. diff --git a/astarte/device/__init__.py b/astarte/device/__init__.py index ee0bb1c0..974bda4e 100644 --- a/astarte/device/__init__.py +++ b/astarte/device/__init__.py @@ -17,7 +17,7 @@ # SPDX-License-Identifier: Apache-2.0 # Version of the module -__version__ = "0.12.0" +__version__ = "0.12.1" # Export what we care about from .device import Device diff --git a/docs/conf.py b/docs/conf.py index 42fdcb6c..40796f63 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,7 +45,7 @@ version = '0.12' # The full version, including alpha/beta/rc tags -release = '0.12.0' +release = '0.12.1' # -- General configuration ---------------------------------------------------