From 3c13c8b0a56694d4163528bf19f68df732cbb511 Mon Sep 17 00:00:00 2001 From: Stephan Lukasczyk Date: Fri, 21 Jun 2024 11:28:07 +0200 Subject: [PATCH] Release Pynguin 0.39.0 - Fix a bug in the handling of infinite loops in global scope --- CHANGELOG.md | 5 +++++ docker/Dockerfile | 2 +- pyproject.toml | 2 +- src/pynguin/__version__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d1d31b9..bbbffbad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ for the source-code artifacts of each version. ## Unreleased +### Pynguin 0.39.0 + +- Fix a bug in the handling of infinite loops in global scope (thanks to @BergLucas in + #65) + ### Pynguin 0.38.0 - Remove the dependency to our custom [MutPy fork](https://github.com/se2p/MutPy-Pynguin) diff --git a/docker/Dockerfile b/docker/Dockerfile index e339e447..153f0190 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -36,7 +36,7 @@ FROM python:3.10.14-slim-bullseye AS execute # Set environment variables # Set the Pynguin version -ENV PYNGUIN_VERSION "0.39.0.dev0" +ENV PYNGUIN_VERSION "0.39.0" # Pynguin requires to set the variable to show it that the user is aware that running # Pynguin executes third-party code, which could cause arbitrary harm to the system. # By setting the variable, the user acknowledges that they are aware of this. In the diff --git a/pyproject.toml b/pyproject.toml index 41e90af9..a605a4e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "pynguin" -version = "0.39.0.dev" +version = "0.39.0" description = "Pynguin is a tool for automated unit test generation for Python" authors = ["Stephan Lukasczyk "] license = "MIT" diff --git a/src/pynguin/__version__.py b/src/pynguin/__version__.py index 7e042c84..f48828fc 100644 --- a/src/pynguin/__version__.py +++ b/src/pynguin/__version__.py @@ -5,4 +5,4 @@ # SPDX-License-Identifier: MIT # """Specifies the version of Pynguin.""" -__version__ = "0.39.0.dev" +__version__ = "0.39.0"