Skip to content

Commit

Permalink
Updated poetry lock based on version 1.1.0 (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben authored Sep 26, 2024
1 parent 9880a3b commit 11bf21c
Show file tree
Hide file tree
Showing 7 changed files with 215 additions and 193 deletions.
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [1.1.0](changes_1.1.0.md)
* [1.0.0](changes_1.0.0.md)
* [0.21.0](changes_0.21.0.md)
* [0.20.0](changes_0.20.0.md)
Expand Down
15 changes: 15 additions & 0 deletions doc/changes/changes_1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Script-Languages-Container-Tool 1.1.0, released t.b.d.

Code name: t.b.d.

## Summary

t.b.d.

## Features

n/a

## Refactoring

n/a
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ def _copy_cache_file_to_output_path(
file_name = (
f"""{self.get_flavor_name()}_{self.release_goal}{suffix}.tar.gz"""
)
output_file = Path(self.export_path, file_name)
output_file = Path(str(self.export_path), file_name)
output_checksum_file = Path(
self.export_path, file_name + "." + CHECKSUM_ALGORITHM
str(self.export_path), file_name + "." + CHECKSUM_ALGORITHM
)
if not output_file.exists() or not output_checksum_file.exists() or is_new:
output_file.parent.mkdir(exist_ok=True, parents=True)
Expand Down
4 changes: 2 additions & 2 deletions exasol/slc/internal/tasks/test/run_db_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def handle_test_result(self, exit_code: int, test_output_file: Path) -> None:
)

result = RunDBTestResult(
test_file=self.test_file,
language=self.language,
test_file=str(self.test_file),
language=str(self.language),
is_test_ok=is_test_ok,
test_output_file=test_output_file,
)
Expand Down
2 changes: 1 addition & 1 deletion exasol/slc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# Do not edit this file manually!
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
MAJOR = 1
MINOR = 0
MINOR = 1
PATCH = 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
380 changes: 193 additions & 187 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-script-languages-container-tool"
version = "1.0.0"
version = "1.1.0"
description = "Script Languages Container Tool"

license = "MIT"
Expand Down

0 comments on commit 11bf21c

Please sign in to comment.