Skip to content

Commit 305d87f

Browse files
committed
5.1.1
1 parent 8d5839a commit 305d87f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+235
-875
lines changed

.github/workflows/latex-builder.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
name: Latex Builder
23

34
on: [push]
@@ -13,8 +14,9 @@ jobs:
1314
- name: Install LaTex utilities
1415
run: sudo apt update && sudo apt-get install -y texlive-full
1516
- name: Get version from file
16-
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
17-
- name: Attempting to build PDFs
17+
run: echo "::set-output name=version::$(cat version)"
18+
id: version
19+
- name: Build PDFs
1820
run: make
1921
release-it:
2022
permissions:
@@ -25,9 +27,14 @@ jobs:
2527
steps:
2628
- name: Checkout repository
2729
uses: actions/checkout@v4
30+
- name: Install LaTex utilities
31+
run: sudo apt update && sudo apt-get install -y texlive-full
2832
- name: Get version from file
2933
id: get_version
30-
run: echo "VERSION=$(cat version)" >> "$GITHUB_OUTPUT"
34+
run: echo "VERSION=version/$(cat version)" >> $GITHUB_ENV
35+
- name: Name release from version
36+
id: get_release
37+
run: echo "RELEASE=release_$(cat version)" >> $GITHUB_ENV
3138
- name: Build PDFs
3239
run: make
3340
- name: Upload PDFs archives
@@ -52,4 +59,4 @@ jobs:
5259
name: ${{env.RELEASE}}
5360
tag_name: ${{env.VERSION}}
5461
make_latest: true
55-
body_path: CHANGELOG.md
62+
body_path: CHANGELOG.md

CHANGELOG.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
# 5.1.0
1+
# 5.1.1
22

3-
- updated logo, acknowledgements, and py_proj.tex
4-
- README
5-
- updated instructions
6-
- refacto : one file per exercise
7-
- Added satisfaction forms within PDFs
8-
- indentation and overflows fixs
9-
- corrected spelling mistakes
10-
- Updated Github actions
3+
- Displaced recurring files (acknowledgements and instructions) to a new `/resources/42ai_bootcamps/` folder.
4+
- Added sat forms within the conclusion of each day.
5+
- Updated `instructions` to add a reference to Black package, and a cautionary word about using LLMs.

build/module05.pdf

-114 KB
Binary file not shown.

build/module06.pdf

-114 KB
Binary file not shown.

build/module07.pdf

-114 KB
Binary file not shown.

build/module08.pdf

-114 KB
Binary file not shown.

build/module09.pdf

-114 KB
Binary file not shown.

module05/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ DEPS = exercises/en.ex02_interlude.tex \
66
exercises/en.ex03_interlude.tex \
77
exercises/en.ex06_interlude.tex \
88
exercises/en.ex08_interlude.tex \
9-
en.instructions.tex \
10-
en.acknowledgements.tex \
9+
../resources/42ai_bootcamps/en.instructions.tex \
10+
../resources/42ai_bootcamps/en.acknowledgements.tex \
11+
../resources/latex/redefinition-commands.tex \
1112
useful_resources.tex
1213

1314
# Relative path to the LaTeX documentclass setup files

module05/assets/42ai_logo.pdf

-115 KB
Binary file not shown.

module05/en.instructions.tex

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

0 commit comments

Comments
 (0)