Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
ci-cd:
- .github/**/*
- changed-files:
- any-glob-to-any-file:
- .github/**

dependencies:
- cmake/**/*
- changed-files:
- any-glob-to-any-file:
- cmake/**

documentation:
- docs/**/*
- changed-files:
- any-glob-to-any-file:
- docs/**

enhancement:
- src/**/*
- changed-files:
- any-glob-to-any-file:
- src/**

quality:
- tests/**/*
- changed-files:
- any-glob-to-any-file:
- tests/**

tooling:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
- changed-files:
- any-glob-to-any-file:
- CMakeLists.txt
- config.h.in
- '**/CMakeLists.txt'
5 changes: 2 additions & 3 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
fail-fast: true
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-22.04

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -76,7 +75,7 @@ jobs:
release-tag: ${{ github.ref_name }}

- name: Build documentation
if: "matrix.os == 'ubuntu-20.04'"
if: "matrix.os == 'ubuntu-22.04'"
run: |
cd build
make doc
Expand Down Expand Up @@ -105,7 +104,7 @@ jobs:
run: pip install -r docs/requirements.txt

- name: Publish documentation
if: "matrix.os == 'ubuntu-20.04'"
if: "matrix.os == 'ubuntu-22.04'"
run: |
git config user.name github-actions
git config user.email github-actions@github.com
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/pr-auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ name: "🏷 PR Labeler"
on:
- pull_request

permissions:
contents: read
pull-requests: write

jobs:
triage:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/labeler@v5
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 5.0.0

### [Changed]

* Le format des canaux contient la taille en bits
* Passage en snake case

### [Fixed]

* Correction de l'utilisation d'un style "identité"

### [Removed]

* Suppression de l'option crop dans work2cache

## 4.2.0

### [Added]
Expand Down
Loading