Skip to content

Commit

Permalink
bump to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HLWeil committed Jan 30, 2024
1 parent 4cc4fcb commit e770924
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
10 changes: 9 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/ArcCommander/Server/Version.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("ArcCommander")>]
[<assembly: AssemblyVersionAttribute("1.0.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","26.01.2024")>]
[<assembly: AssemblyVersionAttribute("1.0.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","30.01.2024")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "ArcCommander"
let [<Literal>] AssemblyVersion = "1.0.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "26.01.2024"
let [<Literal>] AssemblyVersion = "1.0.2"
let [<Literal>] AssemblyMetadata_ReleaseDate = "30.01.2024"

0 comments on commit e770924

Please sign in to comment.