Skip to content

Commit

Permalink
jreleaser v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Feb 29, 2024
1 parent 1cf3cd6 commit 963562d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.0.x'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v3
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '5.0.x'

Expand Down
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,10 @@ com.github.luben:zstd-jni
Bouncy Castle
https://www.bouncycastle.org/licence.html

org.bouncycastle:bcpg-jdk15on
org.bouncycastle:bcpkix-jdk15on
org.bouncycastle:bcprov-jdk15on
org.bouncycastle:bcutil-jdk15on
org.bouncycastle:bcpg-jdk18on
org.bouncycastle:bcpkix-jdk18on
org.bouncycastle:bcprov-jdk18on
org.bouncycastle:bcutil-jdk18on

------------------------------------------------------------------------------
CC0 1.0 Universal
Expand Down
6 changes: 3 additions & 3 deletions jreleaser/jreleaser.nuspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with JReleaser 1.10.0-SNAPSHOT at 2023-12-31T16:01:47.022516386Z -->
<!-- Generated with JReleaser 1.11.0-SNAPSHOT at 2024-02-29T12:31:31.529400801Z -->
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- required -->
<id>jreleaser</id>
<version>1.10.0</version>
<version>1.11.0</version>
<authors>Andres Almiray</authors>
<description>JReleaser is a release automation tool. Its goal is to simplify creating releases and
publishing artifacts to multiple package managers while providing customizable options.
Expand All @@ -29,7 +29,7 @@ may be announced in a variety of channels such as Twitter, Zulip, SDKMAN!, and m
<packageSourceUrl>https://github.com/jreleaser/chocolatey-bucket</packageSourceUrl>
<docsUrl>https://jreleaser.org/guide/latest</docsUrl>
<bugTrackerUrl>https://github.com/jreleaser/jreleaser/issues</bugTrackerUrl>
<releaseNotes>https://github.com/jreleaser/jreleaser/releases/tag/v1.10.0</releaseNotes>
<releaseNotes>https://github.com/jreleaser/jreleaser/releases/tag/v1.11.0</releaseNotes>
<iconUrl>https://rawcdn.githack.com/jreleaser/jreleaser/0934fa1fa3f0bd09c0c8c39fbdeb5df2ce507457/src/media/icon_128x128.png</iconUrl>
</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions jreleaser/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Generated with JReleaser 1.10.0-SNAPSHOT at 2023-12-31T16:01:47.022516386Z
# Generated with JReleaser 1.11.0-SNAPSHOT at 2024-02-29T12:31:31.529400801Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jreleaser-1.10.0'
$app_home = Join-Path $package 'jreleaser-1.11.0'
$app_exe = Join-Path $app_home 'bin/jreleaser.bat'

Install-ChocolateyZipPackage `
-PackageName 'jreleaser' `
-Url 'https://github.com/jreleaser/jreleaser/releases/download/v1.10.0/jreleaser-1.10.0.zip' `
-Checksum 'a3dc16afe344d888b8fd9548d082c69b05e393da50e4991f5e3da30c9d78164c' `
-Url 'https://github.com/jreleaser/jreleaser/releases/download/v1.11.0/jreleaser-1.11.0.zip' `
-Checksum '09379065cf37bfed8182dbf801af42935a8ea4108410ea643c794585db9a16fc' `
-ChecksumType 'sha256' `
-UnzipLocation $package

Expand Down
4 changes: 2 additions & 2 deletions jreleaser/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated with JReleaser 1.10.0-SNAPSHOT at 2023-12-31T16:01:47.022516386Z
# Generated with JReleaser 1.11.0-SNAPSHOT at 2024-02-29T12:31:31.529400801Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jreleaser-1.10.0'
$app_home = Join-Path $package 'jreleaser-1.11.0'
$app_exe = Join-Path $app_home 'bin/jreleaser.bat'

Uninstall-BinFile -Name 'jreleaser' -Path $app_exe

0 comments on commit 963562d

Please sign in to comment.