From 933bf3108382f3ce100df56a65c44e8f6cddfb7e Mon Sep 17 00:00:00 2001 From: Stephan Lukasczyk Date: Wed, 11 Jan 2023 10:56:10 +0100 Subject: [PATCH] Release Pynguin 0.29.0 - Move code to `src`-based layout - Make configuration of `mypy` more strict - Remove an accidentally committed file --- CHANGELOG.md | 6 ++++++ docker/Dockerfile | 4 ++-- pyproject.toml | 2 +- src/pynguin/__version__.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cca737fc..cb190fd94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ for the source-code artifacts of each version. ## Unreleased +## Pynguin 0.29.0 + +- Move code to `src`-based layout +- Make configuration of `mypy` more strict +- Remove an accidentally committed file + ## Pynguin 0.28.0 - Fix distance computations for `<=` and always convert values to `float`. diff --git a/docker/Dockerfile b/docker/Dockerfile index 37dd28933..65601554b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,7 +13,7 @@ # Build stage for Pynguin FROM python:3.10.9-slim-bullseye AS build MAINTAINER Stephan Lukasczyk -ENV POETRY_VERSION "1.3.1" +ENV POETRY_VERSION "1.3.2" WORKDIR /pynguin-build @@ -36,7 +36,7 @@ FROM python:3.10.9-slim-bullseye AS execute # Set environment variables # Set the Pynguin version -ENV PYNGUIN_VERSION "0.29.0.dev0" +ENV PYNGUIN_VERSION "0.29.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 34738d034..fa6d6bdd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "pynguin" -version = "0.29.0.dev" +version = "0.29.0" description = "Pynguin is a tool for automated unit test generation for Python" authors = ["Stephan Lukasczyk "] license = "LGPL-3.0-or-later" diff --git a/src/pynguin/__version__.py b/src/pynguin/__version__.py index fe1f0da9a..4ef382aeb 100644 --- a/src/pynguin/__version__.py +++ b/src/pynguin/__version__.py @@ -5,4 +5,4 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # """Specifies the version of Pynguin.""" -__version__ = "0.29.0.dev" +__version__ = "0.29.0"