Skip to content

Commit

Permalink
jbang v0.120.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jreleaserbot authored and runner committed Nov 16, 2024
1 parent 8cdb178 commit 8d6a164
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 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
6 changes: 3 additions & 3 deletions jbang/jbang.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.9.0 at 2024-09-27T20:21:22.806991Z -->
<!-- Generated with JReleaser 1.15.0 at 2024-11-16T12:08:49.585917Z -->
<!-- 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>jbang</id>
<version>0.119.0</version>
<version>0.120.4</version>
<authors>Max Rydahl Andersen</authors>
<description>Unleash the power of Java.
Use `jbang` to run java, jar, jsh or kt file(s) with automatic dependency fetching
Expand All @@ -23,7 +23,7 @@ and immediate compilation and execution.
<packageSourceUrl>https://github.com/jbangdev/chocolatey-bucket</packageSourceUrl>
<docsUrl>https://jbang.dev/documentation</docsUrl>
<bugTrackerUrl>https://github.com/jbangdev/jbang/issues</bugTrackerUrl>
<releaseNotes>https://github.com/jbangdev/jbang/releases/tag/v0.119.0</releaseNotes>
<releaseNotes>https://github.com/jbangdev/jbang/releases/tag/v0.120.4</releaseNotes>

</metadata>
<files>
Expand Down
8 changes: 4 additions & 4 deletions jbang/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Generated with JReleaser 1.9.0 at 2024-09-27T20:21:22.806991Z
# Generated with JReleaser 1.15.0 at 2024-11-16T12:08:49.585917Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jbang-0.119.0'
$app_home = Join-Path $package 'jbang-0.120.4'
$app_exe = Join-Path $app_home 'bin/jbang.cmd'

Install-ChocolateyZipPackage `
-PackageName 'jbang' `
-Url 'https://github.com/jbangdev/jbang/releases/download/v0.119.0/jbang-0.119.0.zip' `
-Checksum '31876cc1ac9c5ecc531fe8c3abf255e78faf93c11ceb0a7f4cc819f8ada7f4c6' `
-Url 'https://github.com/jbangdev/jbang/releases/download/v0.120.4/jbang-0.120.4.zip' `
-Checksum '0c9234d1fecacae814490ff1b4e71152a3c5adce2756f9f2a386b64b81a2da21' `
-ChecksumType 'sha256' `
-UnzipLocation $package

Expand Down
4 changes: 2 additions & 2 deletions jbang/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated with JReleaser 1.9.0 at 2024-09-27T20:21:22.806991Z
# Generated with JReleaser 1.15.0 at 2024-11-16T12:08:49.585917Z
$tools = Split-Path $MyInvocation.MyCommand.Definition
$package = Split-Path $tools
$app_home = Join-Path $package 'jbang-0.119.0'
$app_home = Join-Path $package 'jbang-0.120.4'
$app_exe = Join-Path $app_home 'bin/jbang.cmd'

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

0 comments on commit 8d6a164

Please sign in to comment.