Skip to content

Commit 1876543

Browse files
Release Pynguin 0.37.0
- Add possibility to control number of mutations in MOSA. - Compute the area under curve if Pynguin traces the coverage over time; area under curve can be interpreted as the integral over the coverage function, which is computed via trapezoidal approximation. - Fix the assertion generation for `float`s (thanks to @BergLucas in #70) - Fix assertions and invalid function call (thanks to @BergLucas in #72)
1 parent 3174e37 commit 1876543

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ for the source-code artifacts of each version.
1111

1212
## Unreleased
1313

14+
### Pynguin 0.37.0
15+
16+
- Add possibility to control number of mutations in MOSA.
17+
- Compute the area under curve if Pynguin traces the overage over time; area under curve
18+
can be interpreted as the integral over the coverage function, which is computed via
19+
trapezoidal approximation.
20+
- Fix the assertion generation for `float`s (thanks to @BergLucas in #70)
21+
- Fix assertion and invalid function call (thanks to @BergLucas in #72)
22+
1423
## Pynguin 0.36.0
1524

1625
- Remove unused code

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Build stage for Pynguin
1414
FROM python:3.10.14-slim-bullseye AS build
1515
LABEL org.opencontainers.image.authors="Stephan Lukasczyk <stephan@pynguin.eu>"
16-
ENV POETRY_VERSION "1.8.2"
16+
ENV POETRY_VERSION "1.8.3"
1717

1818
WORKDIR /pynguin-build
1919

@@ -36,7 +36,7 @@ FROM python:3.10.14-slim-bullseye AS execute
3636

3737
# Set environment variables
3838
# Set the Pynguin version
39-
ENV PYNGUIN_VERSION "0.37.0.dev0"
39+
ENV PYNGUIN_VERSION "0.37.0"
4040
# Pynguin requires to set the variable to show it that the user is aware that running
4141
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
4242
# By setting the variable, the user acknowledges that they are aware of this. In the

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[tool.poetry]
66
name = "pynguin"
7-
version = "0.37.0.dev"
7+
version = "0.37.0"
88
description = "Pynguin is a tool for automated unit test generation for Python"
99
authors = ["Stephan Lukasczyk <stephan@pynguin.eu>"]
1010
license = "MIT"

src/pynguin/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# SPDX-License-Identifier: MIT
66
#
77
"""Specifies the version of Pynguin."""
8-
__version__ = "0.36.0.dev"
8+
__version__ = "0.37.0"

0 commit comments

Comments
 (0)