Skip to content

Commit f737e53

Browse files
authored
Release/prepare 3.1.0 (#282)
1 parent 904b400 commit f737e53

File tree

6 files changed

+27
-82
lines changed

6 files changed

+27
-82
lines changed

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changes
22

33
* [unreleased](unreleased.md)
4+
* [3.1.0](changes_3.1.0.md)
45
* [3.0.0](changes_3.0.0.md)
56
* [2.0.0](changes_2.0.0)
67
* [1.1.0](changes_1.1.0.md)

doc/changes/changes_3.1.0.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 3.1.0 - 2025-04-09
2+
3+
## Features
4+
- #273: Added option "use-existing-container" to run-db-test task
5+
- #277: Added option to export the container to a uncompressed tar
6+
7+
## Refactorings
8+
- #275: Updated to poetry 2.1.2
9+
- #276: Fix type hints in task generator functions
10+
11+
## Security
12+
- #280: Updated Ubuntu version for integration tests

doc/changes/unreleased.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
11
# Unreleased
2-
3-
## Features
4-
- #273: Added option "use-existing-container" to run-db-test task
5-
- #277: Added option to export the container to a uncompressed tar
6-
7-
## Refactorings
8-
- #275: Updated to poetry 2.1.2
9-
- #276: Fix type hints in task generator functions
10-
11-
## Security
12-
- #280: Updated Ubuntu version for integration tests

exasol/slc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 3
8-
MINOR = 0
8+
MINOR = 1
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
1111
__version__ = VERSION

pyproject.toml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
1-
[tool.poetry]
1+
[project]
22
name = "exasol-script-languages-container-tool"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
description = "Script Languages Container Tool"
5+
keywords = ['exasol', 'udf', 'script-languages']
56

7+
readme = 'README.md' # Markdown files are supported
68
license = "MIT"
79

810
authors = [
9-
"Torsten Kilias <[email protected]>"
11+
{ name = "Torsten Kilias", email = "Torsten Kilias <[email protected]>" },
12+
{ name = "Thomas Uebensee", email = "Thomas Uebensee <[email protected]>"}
1013
]
1114

15+
[tool.poetry]
1216
packages = [
1317
{include = "README.md"},
1418
{include = "LICENSE"},
1519
{include = "exasol"},
1620
]
1721

18-
readme = 'README.md' # Markdown files are supported
22+
23+
[project.urls]
1924
repository = "https://github.com/exasol/script-languages-container-tool"
2025
homepage = "https://github.com/exasol/script-languages-container-tool"
21-
keywords = ['exasol', 'udf', 'script-languages']
26+
documentation = "https://github.com/exasol/script-languages-container-tool"
27+
source = "https://github.com/exasol/script-languages-container-tool"
28+
issues = "https://github.com/exasol/script-languages-container-tool/issues"
2229

23-
[tool.poetry.urls]
24-
"Homepage" = "https://github.com/exasol/script-languages-container-tool"
25-
"Documentation" = "https://github.com/exasol/script-languages-container-tool"
26-
"Source" = "https://github.com/exasol/script-languages-container-tool"
27-
"Issues" = "https://github.com/exasol/script-languages-container-tool/issues"
2830

2931
[tool.poetry.dependencies]
3032
python = ">=3.10,<4"
@@ -37,7 +39,7 @@ pydantic="^2.10.2"
3739
jsonschema="^4.23.0"
3840

3941
[build-system]
40-
requires = ["poetry_core>=1.0.0"]
42+
requires = ["poetry_core>=2.0.0"]
4143
build-backend = "poetry.core.masonry.api"
4244

4345
[tool.poetry.group.dev.dependencies]

scripts/build/check_release.py

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)