Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.112.1] Draft Release #31

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pulsar/pulsar.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>1.112.0</version>
<version>1.112.1</version>
<packageSourceUrl>https://github.com/pulsar-edit/pulsar-chocolatey</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<!--<owners>__REPLACE_YOUR_NAME__</owners>-->
Expand Down Expand Up @@ -54,7 +54,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<description>A Community-led Hyper-Hackable Text Editor, Forked from Atom, built on Electron.
Designed to be deeply customizable, but still approachable using the default configuration.
</description>
<releaseNotes>https://github.com/pulsar-edit/pulsar/blob/master/CHANGELOG.md#11120</releaseNotes>
<releaseNotes>https://github.com/pulsar-edit/pulsar/blob/master/CHANGELOG.md#11121</releaseNotes>

<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
<!--<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions pulsar/tools/VERIFICATION.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERIFICATION

Install script will download Windows.Pulsar.Setup.1.112.0.exe from https://github.com/pulsar-edit/pulsar/releases/tag/v1.112.0
Installer checksum (SHA256): 0ec78b72af27c13c5af1ec66897fe477d76b7ade0369c8097a4963e91872a80e
Install script will download Windows.Pulsar.Setup.1.112.1.exe from https://github.com/pulsar-edit/pulsar/releases/tag/v1.112.1
Installer checksum (SHA256): 8ab6b0deae5a2850268a8ca2b93a37bbd92627209d00b3e9283315af0f4219e8
Checksum will be checked automatically by installer script.
4 changes: 2 additions & 2 deletions pulsar/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
$ErrorActionPreference = 'Stop'
$url = 'https://github.com/pulsar-edit/pulsar/releases/download/v1.112.0/Windows.Pulsar.Setup.1.112.0.exe'
$url = 'https://github.com/pulsar-edit/pulsar/releases/download/v1.112.1/Windows.Pulsar.Setup.1.112.1.exe'

$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
softwareName = 'Pulsar'
checksum = '0ec78b72af27c13c5af1ec66897fe477d76b7ade0369c8097a4963e91872a80e'
checksum = '8ab6b0deae5a2850268a8ca2b93a37bbd92627209d00b3e9283315af0f4219e8'
checksumType = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down