Skip to content

Commit d5ddd8f

Browse files
Prepare for release
1 parent 7082621 commit d5ddd8f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ SPDX-License-Identifier: CC-BY-4.0
99
Please also check the [GitHub Releases Page](https://github.com/se2p/pynguin/releases)
1010
for 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

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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
1515
MAINTAINER Stephan Lukasczyk <stephan@lukasczyk.me>
1616
ENV 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

3232
WORKDIR /pynguin
3333

pynguin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
StoppingCondition = config.StoppingCondition
1818
TypeInferenceStrategy = config.TypeInferenceStrategy
1919

20-
__version__ = "0.8.2"
20+
__version__ = "0.9.0"
2121
__all__ = [
2222
"set_configuration",
2323
"run_pynguin",

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.8.2"
7+
version = "0.9.0"
88
description = "Pynguin is a tool for automated unit test generation for Python"
99
authors = ["Stephan Lukasczyk <stephan@lukasczyk.me>"]
1010
license = "LGPL-3.0-or-later"

0 commit comments

Comments
 (0)