From 11ca3573075017a7d1ff3133a80e79e2c8f235a3 Mon Sep 17 00:00:00 2001 From: Fabien Arcellier Date: Sat, 24 Jun 2023 08:02:21 +0200 Subject: [PATCH] release 2.1.1 * fix the behavior of alfred for python 3.7 --- pyproject.toml | 2 +- src/alfred/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 78f9b4b..a7a3df7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "alfred-cli" -version = "2.1.0" +version = "2.1.1" description = "alfred is an extensible building tool that can replace a Makefile or Fabric. Writing commands in python is done in minutes." authors = ["Fabien Arcellier "] license = "MIT" diff --git a/src/alfred/__init__.py b/src/alfred/__init__.py index bbf5bd8..b3fbecf 100644 --- a/src/alfred/__init__.py +++ b/src/alfred/__init__.py @@ -7,4 +7,4 @@ """ https://peps.python.org/pep-0440/ """ -__version__ = "2.1.0" +__version__ = "2.1.1"