From 573554f9076c1a7679ca1896f3e2016634df67b6 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 24 May 2024 16:15:28 +0200 Subject: [PATCH] push versions --- Changelog.md | 4 ++++ README.md | 4 ++-- setup.cfg | 1 - transitions/version.py | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index dc0090eb..4e89d8aa 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.9.2 () + +- Bug #610: Decorate models appropriately when `HierarchicalMachine` is passed to `add_state` (thanks @e0lithic) + ## 0.9.1 (May 2024) Release 0.9.1 is a minor release and contains several bugfixes and some (typing) improvements. This release also introduces `on_final` callbacks on machines (as well as `NestedState`) and `final` flags for states. diff --git a/README.md b/README.md index e2a214a7..ea7deded 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # transitions -[![Version](https://img.shields.io/badge/version-v0.9.1-orange.svg)](https://github.com/pytransitions/transitions) +[![Version](https://img.shields.io/badge/version-v0.9.2-orange.svg)](https://github.com/pytransitions/transitions) [![Build Status](https://github.com/pytransitions/transitions/actions/workflows/pytest.yml/badge.svg)](https://github.com/pytransitions/transitions/actions?query=workflow%3Apytest) [![Coverage Status](https://coveralls.io/repos/github/pytransitions/transitions/badge.svg?branch=master)](https://coveralls.io/github/pytransitions/transitions?branch=master) [![PyPi](https://img.shields.io/pypi/v/transitions.svg)](https://pypi.org/project/transitions) [![Copr](https://img.shields.io/badge/dynamic/json?color=blue&label=copr&query=builds.latest.source_package.version&url=https%3A%2F%2Fcopr.fedorainfracloud.org%2Fapi_3%2Fpackage%3Fownername%3Daleneum%26projectname%3Dpython-transitions%26packagename%3Dpython-transitions%26with_latest_build%3DTrue)](https://copr.fedorainfracloud.org/coprs/aleneum/python-transitions/) -[![GitHub commits](https://img.shields.io/github/commits-since/pytransitions/transitions/0.9.0.svg)](https://github.com/pytransitions/transitions/compare/0.9.0...master) +[![GitHub commits](https://img.shields.io/github/commits-since/pytransitions/transitions/0.9.1.svg)](https://github.com/pytransitions/transitions/compare/0.9.1...master) [![License](https://img.shields.io/github/license/pytransitions/transitions.svg)](LICENSE) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/pytransitions/transitions/master?filepath=examples%2FPlayground.ipynb) diff --git a/setup.cfg b/setup.cfg index 45d4f45b..ae29991c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,6 @@ description_file = README.md [check-manifest] ignore = - .travis.yml .scrutinizer.yml appveyor.yml diff --git a/transitions/version.py b/transitions/version.py index b148aa4d..0d302254 100644 --- a/transitions/version.py +++ b/transitions/version.py @@ -2,4 +2,4 @@ to determine transitions' version during runtime. """ -__version__ = '0.9.1' +__version__ = '0.9.2'