diff --git a/.github/workflows/release-github.yml b/.github/workflows/release-github.yml index 779f1c4..c31cbf6 100644 --- a/.github/workflows/release-github.yml +++ b/.github/workflows/release-github.yml @@ -21,9 +21,9 @@ jobs: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "v1.0.1-win.x64" + automatic_release_tag: "v1.0.2-win.x64" prerelease: false - title: "v1.0.1-win.x64" + title: "v1.0.2-win.x64" files: | src/ArcCommander/config_win/config publish/win-x64/arc.exe @@ -43,9 +43,9 @@ jobs: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "v1.0.1-linux.x64" + automatic_release_tag: "v1.0.2-linux.x64" prerelease: false - title: "v1.0.1-linux.x64" + title: "v1.0.2-linux.x64" files: | src/ArcCommander/config_unix/config publish/linux-x64/arc @@ -65,9 +65,9 @@ jobs: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "v1.0.1-osx.x64" + automatic_release_tag: "v1.0.2-osx.x64" prerelease: false - title: "v1.0.1-osx.x64" + title: "v1.0.2-osx.x64" files: | src/ArcCommander/config_unix/config publish/osx-x64/arc \ No newline at end of file diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ebdd775..dfeebc3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,12 @@ -### 1.0.1+b545b82 (Released 2024-1-26) +### 1.0.2+4cc4fcb (Released 2024-1-30) +* Additions: + * [[#1716bb9](https://github.com/nfdi4plants/arcCommander/commit/1716bb9a4c642f8f39060d12eeb7055ba06a36be)] update references + * [[#bfec1bb](https://github.com/nfdi4plants/arcCommander/commit/bfec1bb30f538f0bce4ea050d51500735aac65dd)] bump to 1.0.1 +* Bugfixes: + * [[#4cc4fcb](https://github.com/nfdi4plants/arcCommander/commit/4cc4fcb1e8803f52c8bb7d25d125c55453ecc3e7)] Merge pull request #239 from nfdi4plants/smallFixes + * [[#17c2d39](https://github.com/nfdi4plants/arcCommander/commit/17c2d39677726dbac9fff5824fcd42b4d7402014)] fix export always writing to log, regardless of output flag being set + +### 1.0.1+b545b82 (Released 2024-1-26) * Additions: * [[#b44bb07](https://github.com/nfdi4plants/arcCommander/commit/b44bb07d44ca766db2a899fbd24836244970f764)] bump to 1.0.0-preview.2 * [[#5d2a908](https://github.com/nfdi4plants/arcCommander/commit/5d2a908863d0f0971d122bf09a186c4ef540c1e7)] Merge pull request #226 from nfdi4plants/packagingAndVersioning diff --git a/src/ArcCommander/Server/Version.fs b/src/ArcCommander/Server/Version.fs index 8f06f23..3da2296 100644 --- a/src/ArcCommander/Server/Version.fs +++ b/src/ArcCommander/Server/Version.fs @@ -3,11 +3,11 @@ namespace System open System.Reflection [] -[] -[] +[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "ArcCommander" - let [] AssemblyVersion = "1.0.1" - let [] AssemblyMetadata_ReleaseDate = "26.01.2024" + let [] AssemblyVersion = "1.0.2" + let [] AssemblyMetadata_ReleaseDate = "30.01.2024"