Skip to content

Commit

Permalink
Merge pull request #36 from pulsar-edit/release-1.114.0
Browse files Browse the repository at this point in the history
[1.114.0] Draft Release
  • Loading branch information
confused-Techie authored Feb 16, 2024
2 parents d1ee1b5 + efa5737 commit 6522e76
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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.113.0</version>
<version>1.114.0</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#11130</releaseNotes>
<releaseNotes>https://github.com/pulsar-edit/pulsar/blob/master/CHANGELOG.md#11140</releaseNotes>

<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
<!--<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pulsar/tools/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2023 Pulsar-Edit
Copyright (c) 2022-2024 Pulsar-Edit
Original work copyright (c) 2011-2022 GitHub Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
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.113.0.exe from https://github.com/pulsar-edit/pulsar/releases/tag/v1.113.0
Installer checksum (SHA256): 74fe5fad563b6eaec53668431db2dfa854021c4b0126c311363bcda6d47adf4f
Install script will download Windows.Pulsar.Setup.1.114.0.exe from https://github.com/pulsar-edit/pulsar/releases/tag/v1.114.0
Installer checksum (SHA256): 65f447565aa13a35fb39a0f4bc6d27c0e189fe8d76c89b4a0f8e50f82bd4925a
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.113.0/Windows.Pulsar.Setup.1.113.0.exe'
$url = 'https://github.com/pulsar-edit/pulsar/releases/download/v1.114.0/Windows.Pulsar.Setup.1.114.0.exe'

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

0 comments on commit 6522e76

Please sign in to comment.