From 47fc3fb3305567ac02244c5080b449aeb9758fe4 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Wed, 11 Sep 2024 17:01:21 +0200 Subject: [PATCH 01/52] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..e8f3d6f54 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,22 @@ +# Maven +# Build your Java project and run tests with Apache Maven. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/java + +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.11' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package' From e2744b6b529b84223e49c31888ce48fe7e5fe672 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:14:55 +0200 Subject: [PATCH 02/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8f3d6f54..05d10ba7a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -20,3 +20,31 @@ steps: publishJUnitResults: true testResultsFiles: '**/surefire-reports/TEST-*.xml' goals: 'package' + +- task: PowerShell@2 + inputs: + targetType: 'inline' + script: | + # Lire la version actuelle à partir du fichier + $versionFilePath = "$(Build.SourcesDirectory)/version.txt" + $version = Get-Content $versionFilePath + + # Diviser la version en parties : majeure, mineure, patch + $versionParts = $version -split '\.' + $major = [int]$versionParts[0] + $minor = [int]$versionParts[1] + $patch = [int]$versionParts[2] + + # Décider de la partie à incrémenter (ici le patch) + $patch++ + + # Construire la nouvelle version + $newVersion = "$major.$minor.$patch" + echo "Nouvelle version : $newVersion" + + # Mettre à jour le fichier avec la nouvelle version + Set-Content -Path $versionFilePath -Value $newVersion + + # Enregistrer la nouvelle version dans la variable de build + echo "##vso[task.setvariable variable=version]$newVersion" + displayName: 'Incrémenter le patch dans version.txt' From 42d51633add5ef098fb530259b5f1f38dda63f97 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:16:33 +0200 Subject: [PATCH 03/52] Create version.txt --- version.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 version.txt diff --git a/version.txt b/version.txt new file mode 100644 index 000000000..3eefcb9dd --- /dev/null +++ b/version.txt @@ -0,0 +1 @@ +1.0.0 From e9ce1eb4cba4f8b6973d8572a8c5c6b3c8de58a7 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:21:55 +0200 Subject: [PATCH 04/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 05d10ba7a..fc1037312 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,3 +48,18 @@ steps: # Enregistrer la nouvelle version dans la variable de build echo "##vso[task.setvariable variable=version]$newVersion" displayName: 'Incrémenter le patch dans version.txt' + +- script: | + git config --global user.name "BuildAgent" + git config --global user.email "buildagent@mycompany.com" + git add version.txt + git commit -m "Incrémentation de la version à $(version)" + git push origin HEAD:main + displayName: 'Valider et pousser le fichier de version' + +- task: DotNetCoreCLI@2 + inputs: + command: 'pack' + packagesToPack: '**/*.csproj' + versioningScheme: 'byBuild' + version: $(version) \ No newline at end of file From a1efe73d841cbfe29ec19bf5bd50ca959ddb63b8 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:27:32 +0200 Subject: [PATCH 05/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fc1037312..abfc63d98 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,8 +50,8 @@ steps: displayName: 'Incrémenter le patch dans version.txt' - script: | - git config --global user.name "BuildAgent" - git config --global user.email "buildagent@mycompany.com" + git config --global user.name "jamil" + git config --global user.email "abidijamil@gmail.com" git add version.txt git commit -m "Incrémentation de la version à $(version)" git push origin HEAD:main From 27c8ee7de936dbc65175940251ebf283324fa664 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:51:34 +0200 Subject: [PATCH 06/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index abfc63d98..c7fc903e4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -52,6 +52,7 @@ steps: - script: | git config --global user.name "jamil" git config --global user.email "abidijamil@gmail.com" + git remote set-url origin https://$(GITHUB_TOKEN)@github.com/jamilabidi/pipelines-java.git git add version.txt git commit -m "Incrémentation de la version à $(version)" git push origin HEAD:main From 05fc35cfd05eb1acf51369d46aa71d064fca123a Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:54:11 +0200 Subject: [PATCH 07/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c7fc903e4..158c3201b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -52,7 +52,7 @@ steps: - script: | git config --global user.name "jamil" git config --global user.email "abidijamil@gmail.com" - git remote set-url origin https://$(GITHUB_TOKEN)@github.com/jamilabidi/pipelines-java.git + git remote set-url origin "https://$(GITHUB_TOKEN)@github.com/jamilabidi/pipelines-java" git add version.txt git commit -m "Incrémentation de la version à $(version)" git push origin HEAD:main From 2c08103dfd434a396578c288ab12ccb5cb6e0280 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:05:06 +0000 Subject: [PATCH 08/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 3eefcb9dd..7dea76edb 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.0 +1.0.1 From cc5bc4e1e867b793f99bb0a467b7ce10b9fe59fc Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:05:47 +0000 Subject: [PATCH 09/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 7dea76edb..6d7de6e6a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.1 +1.0.2 From 192876110c7c9456a57ec4d7a845f17609426be5 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:06:29 +0000 Subject: [PATCH 10/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 6d7de6e6a..21e8796a0 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.2 +1.0.3 From ae0fc4bc8083b24022447623704f2400f82cd81d Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:07:02 +0000 Subject: [PATCH 11/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 21e8796a0..ee90284c2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.3 +1.0.4 From cb2d72df84b7082b41d91602100fda3c1f4d78d3 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:07:45 +0000 Subject: [PATCH 12/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index ee90284c2..90a27f9ce 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.4 +1.0.5 From e29155e44066772a502dd23ccaf90b3cf853aa41 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:08:26 +0000 Subject: [PATCH 13/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 90a27f9ce..af0b7ddbf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.5 +1.0.6 From 92ebb32b99381b83f2760e752a13c573f3ed6fb5 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:09:12 +0000 Subject: [PATCH 14/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index af0b7ddbf..238d6e882 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.6 +1.0.7 From 644b45611848c3e142629b7341217680485ebec2 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:09:45 +0000 Subject: [PATCH 15/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 238d6e882..b0f3d96f8 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.7 +1.0.8 From da45cab3915914fc266b3963535dd6cfba7b44d0 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:10:26 +0000 Subject: [PATCH 16/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index b0f3d96f8..66c4c2263 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.8 +1.0.9 From adcd3cd9f616401844e9bc9a88e23d59d72acce7 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:11:03 +0000 Subject: [PATCH 17/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 66c4c2263..7ee7020b3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.9 +1.0.10 From 4958a3d8abb88038b0255cd74e888dd0955e1411 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:11:42 +0000 Subject: [PATCH 18/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.11?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 7ee7020b3..59e9e6049 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.10 +1.0.11 From 49f4189fa10af5d02cc105d7e30e365e05e50bc1 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:12:25 +0000 Subject: [PATCH 19/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 59e9e6049..bb83058ed 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.11 +1.0.12 From cec78ba9f0ea2e32befe4ac2c314b2f728e91e7e Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:13:19 +0000 Subject: [PATCH 20/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index bb83058ed..2ac9634d3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.12 +1.0.13 From e6c5407bbfd8ffcfd48fba57bf2a3fa0d2b39fbc Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:13:52 +0000 Subject: [PATCH 21/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.14?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 2ac9634d3..5b09c67c2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.13 +1.0.14 From e5c13c70355421839d64ea0685b2b4e3c98be0c3 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:14:29 +0000 Subject: [PATCH 22/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 5b09c67c2..a9707166b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.14 +1.0.15 From 1ceaa517e7ab89f7b95b891f6d3241e2313271a7 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:15:03 +0000 Subject: [PATCH 23/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.16?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index a9707166b..b668c3b2c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.15 +1.0.16 From b2a14611f2e20d2f06a5a1212b10dd98d8773a5b Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:15:49 +0000 Subject: [PATCH 24/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index b668c3b2c..8fc77d0fa 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.16 +1.0.17 From f07edaefbfb1c697e6e9031eb54b8b113883b7f7 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:16:30 +0000 Subject: [PATCH 25/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.18?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 8fc77d0fa..f8f3c0872 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.17 +1.0.18 From df50ef6de4d5492af5134d45b1d6e7ce9685eb67 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:17:10 +0000 Subject: [PATCH 26/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index f8f3c0872..140333f6d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.18 +1.0.19 From c35f084de42f1dd2c4bc7a35589854da2ed437fe Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:17:51 +0000 Subject: [PATCH 27/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 140333f6d..c2320f5be 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.19 +1.0.20 From d9c6556f82e12babba37656b02e8c67976401a92 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:18:24 +0000 Subject: [PATCH 28/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.21?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index c2320f5be..b112f9132 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.20 +1.0.21 From d7c5abdd07a9e57503756ec68658a9c2bc3d0307 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:19:06 +0000 Subject: [PATCH 29/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index b112f9132..c787b213b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.21 +1.0.22 From 4fa8b464786759dd7223c7c556701909d969b7ad Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:19:51 +0000 Subject: [PATCH 30/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.23?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index c787b213b..154b9fce5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.22 +1.0.23 From 4959eed6897e29345cccb88907835890f96c59e2 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:20:33 +0000 Subject: [PATCH 31/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 154b9fce5..79728fe87 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.23 +1.0.24 From 98445246afbfcfb0574b18fa1ec52d6889c6e46b Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:21:05 +0000 Subject: [PATCH 32/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.25?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 79728fe87..4a4127c37 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.24 +1.0.25 From baec5fba0f0375bfb7b74789fd398771e5f40631 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:21:46 +0000 Subject: [PATCH 33/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.26?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 4a4127c37..8955a0173 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.25 +1.0.26 From 6ab538c2a72a31d92d2cc8fc36cae69951c0bd36 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:22:24 +0000 Subject: [PATCH 34/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.27?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 8955a0173..adb7b04cb 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.26 +1.0.27 From c36f64666c73359f0ddb0f39fc40d4a038c42405 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:23:07 +0000 Subject: [PATCH 35/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.28?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index adb7b04cb..8b5440952 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.27 +1.0.28 From 039b9532ce88e11b04dfa639cbe77064a439deda Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:23:49 +0000 Subject: [PATCH 36/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.29?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 8b5440952..4c24bf133 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.28 +1.0.29 From 259599bd70ca2f20022e5fa4a49d531583ee6057 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:23:56 +0200 Subject: [PATCH 37/52] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 158c3201b..5d973fba9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -35,9 +35,24 @@ steps: $minor = [int]$versionParts[1] $patch = [int]$versionParts[2] + # Afficher la version actuelle + echo "Version actuelle : $major.$minor.$patch" + # Décider de la partie à incrémenter (ici le patch) $patch++ + # Si un changement du numéro mineur est détecté, incrémenter le mineur et remettre le patch à zéro + if ($env:NEW_MINOR -and $minor -ne $env:NEW_MINOR) { + echo "Incrémentation de la version mineure..." + $minor = [int]$env:NEW_MINOR + $patch = 0 + $newVersion = "$major.$minor.$patch-rc" + } else { + echo "Aucune modification de la version mineure, incrémentation du patch..." + $patch++ + $newVersion = "$major.$minor.$patch" + } + # Construire la nouvelle version $newVersion = "$major.$minor.$patch" echo "Nouvelle version : $newVersion" From 2b40ad39f7ac1791fdb613b4bc7f7c779ac6608f Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:24:34 +0000 Subject: [PATCH 38/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.31?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 4c24bf133..94956151c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.29 +1.0.31 From 186b64f0fe9a24e1040dc620946ba281832e7621 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:25:16 +0000 Subject: [PATCH 39/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.33?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 94956151c..e8eb7f11f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.31 +1.0.33 From 009819d7212d86e7b95a8bf514e3e7de2099a621 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:26:00 +0000 Subject: [PATCH 40/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.35?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index e8eb7f11f..28dff4326 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.33 +1.0.35 From d02efa2421d8fcdb55becb45aa90e4479915cb62 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:26:41 +0000 Subject: [PATCH 41/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.37?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 28dff4326..f6c5328c4 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.35 +1.0.37 From 087aac288ae7df5842506d7024ba50af85fb4cf5 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:27:12 +0000 Subject: [PATCH 42/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.39?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index f6c5328c4..672e5f5b9 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.37 +1.0.39 From 7accc8719b36b8de239c6475413df42fb8f85ee6 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:27:46 +0000 Subject: [PATCH 43/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.41?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 672e5f5b9..7cb055ca3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.39 +1.0.41 From f8144fe5a9c61c0598e4dc86e485ab9feac9dccc Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:28:25 +0000 Subject: [PATCH 44/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.43?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 7cb055ca3..f683e664d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.41 +1.0.43 From 4677cb1ce471de9c4dd31a32d73d7c1f310f4736 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:29:20 +0000 Subject: [PATCH 45/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.45?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index f683e664d..2fec7517f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.43 +1.0.45 From 1223e92f258297aa03bd29452eb7dca9a1f51bde Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:30:11 +0000 Subject: [PATCH 46/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.47?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 2fec7517f..bde91a295 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.45 +1.0.47 From afb378e5f2d33652c200f6377a1d67ede969b201 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:30:51 +0000 Subject: [PATCH 47/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.49?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index bde91a295..f1339850d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.47 +1.0.49 From 5e72b71c38bebc9d38e0d3b04c251282b2419be5 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:31:36 +0000 Subject: [PATCH 48/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.51?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index f1339850d..73b46782d 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.49 +1.0.51 From 9194c2347dca6a617967f8d036b793a4f76ac813 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:32:12 +0000 Subject: [PATCH 49/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.53?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 73b46782d..b649b9194 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.51 +1.0.53 From d3d0efdb55c058b7b6a29c29e6adc7713396f7e8 Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:32:44 +0000 Subject: [PATCH 50/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.55?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index b649b9194..78a3e6ec3 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.53 +1.0.55 From bf985e0016ce029f6a6d6ee70abfdc834cbbd10a Mon Sep 17 00:00:00 2001 From: jamil Date: Fri, 13 Sep 2024 13:33:15 +0000 Subject: [PATCH 51/52] =?UTF-8?q?Incr=C3=A9mentation=20de=20la=20version?= =?UTF-8?q?=20=C3=A0=201.0.57?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index 78a3e6ec3..9f1a86471 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.55 +1.0.57 From 07f85a1fc4ddf58f0559077884138f6127546cd0 Mon Sep 17 00:00:00 2001 From: jamilabidi <152490838+jamilabidi@users.noreply.github.com> Date: Fri, 13 Sep 2024 15:34:56 +0200 Subject: [PATCH 52/52] Create feature52.toto --- feature52.toto | 1 + 1 file changed, 1 insertion(+) create mode 100644 feature52.toto diff --git a/feature52.toto b/feature52.toto new file mode 100644 index 000000000..d6ec6fa31 --- /dev/null +++ b/feature52.toto @@ -0,0 +1 @@ +la feature de la mort qui tue