Skip to content

Commit

Permalink
[CodeBuild] add version check and prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarleneKress79789 committed Dec 19, 2023
1 parent e736b42 commit a0f635d
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 12 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check_version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Check if versions are consistent

on: pull_request

jobs:
check-version-numbers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/prepare_poetry_env
- name: Check Release
run: ./scripts/build/check_release.sh
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

* [0.7.0](changes_0.7.0.md)
* [0.6.0](changes_0.6.0.md)
* [0.5.0](changes_0.5.0.md)
* [0.4.0](changes_0.4.0.md)
Expand Down
21 changes: 11 additions & 10 deletions doc/changes/changes_0.7.0.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# Transformers Extension 0.7.0, released T.B.D
# Transformers Extension 0.7.0, released 2023-12-19

Code name: T.B.D
Code name: Split SLC actions


## Summary

T.B.D
In this Release split the container uploading and registration into two separate actions. Additionally,
a workflow for checking the correctness of the version number in multiple places was added. Apart from that there
are some refactorings for better usability and the Cryptography dependency version has been upgraded to 41.0.7

### Features

### Bug Fixes
- #151: Made the container uploading and language registration two separate actions
- #167: Added version check workflow

### Refactorings

- #144: Extracted base_model_udf.load_models into separate class


### Documentation


- #159: Refactored LanguageContainer Deployer to make it reusable by other extensions

### Security
- #144: Updated Cryptography to version 41.0.7

- #144: Updated Cryptography to version 41.0.7

14 changes: 13 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-transformers-extension"
version = "0.5.0"
version = "0.7.0"
description = "An Exasol extension to use state-of-the-art pretrained machine learning models via the transformers api."

authors = [
Expand Down Expand Up @@ -33,6 +33,7 @@ tenacity = "^8.2.2"
pytest = "^7.2.0"
exasol-udf-mock-python = "^0.1.0"
exasol-script-languages-container-tool = "^0.18.1"
toml = "^0.10.2"

[[tool.poetry.source]]
name = "torch"
Expand Down

0 comments on commit a0f635d

Please sign in to comment.