Skip to content

Commit

Permalink
Set release date
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Jan 15, 2025
1 parent 025c6c8 commit eaa7c6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions doc/changes/changes_3.2.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AI-Lab 3.2.0 released 2025-??-??
# AI-Lab 3.2.0 released 2025-01-16

Code name: Additional Updates on top of 3.1.0

Expand Down Expand Up @@ -36,5 +36,5 @@ Accepted vulnerabilities:

## Bug Fixes

- #335: Fixed DNS resolution in ITDE when running jupyter notebook tests
- #342: Updated the jupysql dependency to resolve the conflict with prettytable
* #335: Fixed DNS resolution in ITDE when running jupyter notebook tests
* #342: Updated the jupysql dependency to resolve the conflict with prettytable
10 changes: 5 additions & 5 deletions doc/developer_guide/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ Shell function to find all packages in the ansible scripts

```shell
function xail-ansible-dependencies() {
local DIR=exasol/ds/sandbox/runtime/ansible
local DIR=exasol/ds/sandbox/runtime/ansible/roles
for i in $( find "$DIR" -name "*.yml"); do
local hits=$(grep -E "[a-z]+=[0-9]" "$i")
if [ -n "$hits" ]; then
local LABEL=$(echo $i | sed -e "s|$DIR/roles/||")
echo -Ee "\n$LABEL:\n$hits"
local DEPS=$(grep -E "[a-z]+=[0-9]" "$i")
if [ -n "$DEPS" ]; then
local LABEL=$(echo $i | sed -e "s|$DIR/||")
echo -e "\n$LABEL:\n$DEPS"
fi
done
}
Expand Down

0 comments on commit eaa7c6a

Please sign in to comment.