File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ SPDX-License-Identifier: CC-BY-4.0
99Please also check the [ GitHub Releases Page] ( https://github.com/se2p/pynguin/releases )
1010for the source-code artifacts of each version.
1111
12+ ## Pynguin 0.9.0
13+
14+ - Proper support for Python 3.9
15+ - Improve branch-distance calculations for ` byte ` values
16+ - Cleanup algorithm implementations
17+
1218## Pynguin 0.8.1
1319
1420- Regroup configuration options
Original file line number Diff line number Diff line change 1111# ##############################################################################
1212
1313# Build stage for Pynguin
14- FROM python:3.8.9 -slim-buster AS build
14+ FROM python:3.8.10 -slim-buster AS build
1515MAINTAINER Stephan Lukasczyk <stephan@lukasczyk.me>
1616ENV POETRY_VERSION "1.1.6"
1717
@@ -26,8 +26,8 @@ RUN pip install poetry==$POETRY_VERSION \
2626
2727
2828# Execution stage for Pynguin
29- FROM python:3.8.9 -slim-buster AS execute
30- ENV PYNGUIN_VERSION "0.8.2 "
29+ FROM python:3.8.10 -slim-buster AS execute
30+ ENV PYNGUIN_VERSION "0.9.0 "
3131
3232WORKDIR /pynguin
3333
Original file line number Diff line number Diff line change 1717StoppingCondition = config .StoppingCondition
1818TypeInferenceStrategy = config .TypeInferenceStrategy
1919
20- __version__ = "0.8.2 "
20+ __version__ = "0.9.0 "
2121__all__ = [
2222 "set_configuration" ,
2323 "run_pynguin" ,
Original file line number Diff line number Diff line change 44
55[tool .poetry ]
66name = " pynguin"
7- version = " 0.8.2 "
7+ version = " 0.9.0 "
88description = " Pynguin is a tool for automated unit test generation for Python"
99authors = [" Stephan Lukasczyk <stephan@lukasczyk.me>" ]
1010license = " LGPL-3.0-or-later"
You can’t perform that action at this time.
0 commit comments