Skip to content

Commit

Permalink
Release Pynguin 0.29.0
Browse files Browse the repository at this point in the history
- Move code to `src`-based layout
- Make configuration of `mypy` more strict
- Remove an accidentally committed file
  • Loading branch information
stephanlukasczyk committed Jan 11, 2023
1 parent d20e04e commit 933bf31
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Build stage for Pynguin
FROM python:3.10.9-slim-bullseye AS build
MAINTAINER Stephan Lukasczyk <[email protected]>
ENV POETRY_VERSION "1.3.1"
ENV POETRY_VERSION "1.3.2"

WORKDIR /pynguin-build

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "LGPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion src/pynguin/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 933bf31

Please sign in to comment.