Skip to content

Commit 3601f75

Browse files
committed
Chocolatey
1 parent d86d711 commit 3601f75

19 files changed

+87
-63
lines changed

Chocolatey/GitHubReleaseNotes/GitHubReleaseNotes.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
2626
<!-- version should MATCH as closely as possible with the underlying software -->
2727
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
2828
<!-- 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. -->
29-
<version>1.0.8.0</version>
29+
<version>1.0.9.0</version>
3030
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
3131
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
3232
<owners>Stef Heyenrath</owners>
@@ -39,7 +39,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
3939
<!-- projectUrl is required for the community feed -->
4040
<projectUrl>https://github.com/StefH/GitHubReleaseNotes</projectUrl>
4141
<iconUrl>https://raw.githubusercontent.com/StefH/GitHubReleaseNotes/master/icon.png</iconUrl>
42-
<copyright>2018 - 2021 Stef Heyenrath</copyright>
42+
<copyright>2018 - 2024 Stef Heyenrath</copyright>
4343
<!-- If there is a license Url available, it is required for the community feed -->
4444
<licenseUrl>https://raw.githubusercontent.com/StefH/GitHubReleaseNotes/master/LICENSE</licenseUrl>
4545
<!--<requireLicenseAcceptance>true</requireLicenseAcceptance>-->

Chocolatey/GitHubReleaseNotes/HowTo.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# HowTo
22

33
## Update release
4-
- Update release in `Directory.Build.props`
5-
- Update release in `GitHubReleaseNotes.nuspec`
6-
- Update release in this file
4+
- Update Version in `Directory.Build.props`
5+
- Update version in `GitHubReleaseNotes.nuspec`
6+
- Update Version in this file
77

88
## Build
99
Build in release mode
@@ -12,6 +12,8 @@ Build in release mode
1212
Use LinqPad on `.\Chocolatey\generate.linq` to generate VERIFICATION.txt
1313

1414
## Generate the release-notes
15+
- Update the version in 'GenerateReleaseNotes.cmd'
16+
- Run GenerateReleaseNotes.cmd
1517

1618
## Pack
1719
Run as **Administrator**:
@@ -28,5 +30,5 @@ choco apikey --key {KEY} --source https://push.chocolatey.org/
2830

2931
Then push:
3032
``` cmd
31-
choco push githubreleasenotes.1.0.8.0.nupkg --source https://push.chocolatey.org/
33+
choco push githubreleasenotes.1.0.9.nupkg --source https://push.chocolatey.org/
3234
```

Chocolatey/GitHubReleaseNotes/tools/VERIFICATION.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ To verify this package, follow these steps:
55
1] Right click the GitHubReleaseNotes.exe in Windows file explorer and go to the "Details" tab and check the following properties:
66
- File description GitHubReleaseNotes
77
- Type Application
8-
- File version 1.0.8.0
8+
- File version 1.0.9.0
99
- Product name GitHubReleaseNotes
10-
- Product version 1.0.8.0
10+
- Product version 1.0.9.0
1111
- Copyright Stef Heyenrath
1212
- Size 1,16 MB
13-
- Date modified 2023-03-25 17:10
13+
- Date modified 2024-02-01 15:45
1414
- Language Language Neutral
1515
- Original filename GitHubReleaseNotes.exe
1616

1717
2] Verify the SHA256 from the GitHubReleaseNotes.exe file (7zip can be used for this)
18-
- SHA256 AA48F38284D61A49C620AB266030C6CAC4B700E680F10908AEC64B5B8BB9D817
18+
- SHA256 03D15D98897FF00DF4F7A0AD2F4438E0299CAF3282D49AC702AEFFECB1ED5958
1919

2020
3] For the changes in this release, see ReleaseNotes.md
2121

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</PropertyGroup>
55

66
<PropertyGroup>
7-
<Version>1.0.8.0</Version>
7+
<Version>1.0.9.0</Version>
88
<Description>Generate Release Notes from a GitHub project.</Description>
99
<Summary>Generate Release Notes from a GitHub project.</Summary>
1010
<Authors>Stef Heyenrath</Authors>

GenerateReleaseNotes.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels invalid question doc tip --version 1.0.9.0

ReleaseNotes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.0.9.0 (01 February 2024)
2+
- [#27](https://github.com/StefH/GitHubReleaseNotes/pull/27) - Update method GetAllIssuesAndPullRequestsAsync [feature] contributed by [StefH](https://github.com/StefH)
3+
4+
# 1.0.8.0 (25 March 2023)
5+
- [#26](https://github.com/StefH/GitHubReleaseNotes/pull/26) - Upgrade to .NET 6 [feature] contributed by [StefH](https://github.com/StefH)
6+
17
# 1.0.7.1 (23 June 2021)
28
- [#20](https://github.com/StefH/GitHubReleaseNotes/pull/20) - Fix version from setup.exe [bug] contributed by [StefH](https://github.com/StefH)
39
- [#21](https://github.com/StefH/GitHubReleaseNotes/pull/21) - Replace LibGit2Sharp.Portable with latest LibGit2Sharp [bug] contributed by [StefH](https://github.com/StefH)

ReleaseNotes.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

Wix/HowTo.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
## Update release
44
Do Chocolatey first
55

6-
## Build tool
7-
Build in release mode
8-
96
## Update version
10-
Use LinqPad on `generate guid.linq` to generate + update the product guid,.
7+
Use LinqPad on `generate guid.linq` to generate + update the product guid and the upgrade guid.
118

129
## Build setup
1310
Build setup project

Wix/Setup/Product.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="32249977-C6C1-40ED-B6A8-7084E69A0E7" Name="GitHubReleaseNotes" Language="1033" Manufacturer="Stef Heyenrath" Version="1.0.8.0" UpgradeCode="ca1f74e0-dfca-4774-ae65-9421b4d08ff2">
3+
<Product Id="32249977-C6C1-40ED-B6A8-7084E69A0E7A" Name="GitHubReleaseNotes" Language="1033" Manufacturer="Stef Heyenrath" Version="1.0.9.0" UpgradeCode="9A4C29E2-4598-4D4A-BA2D-DE476B708ACB">
44
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
55
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
66
<MediaTemplate EmbedCab="yes" />
Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json
1+
# Created with WinGet Automation using Komac v1.10.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json
23

34
PackageIdentifier: StefHeyenrath.GitHubReleaseNotes
45
PackageVersion: 1.0.8.0
5-
MinimumOSVersion: 10.0.0.0
6-
InstallerType: wix
6+
InstallerLocale: en-US
7+
InstallerType: msi
8+
ProductCode: '{32249977-C6C1-40ED-B6A8-7084E69A0E7A}'
9+
ReleaseDate: 2023-03-25
10+
AppsAndFeaturesEntries:
11+
- UpgradeCode: '{CA1F74E0-DFCA-4774-AE65-9421B4D08FF2}'
712
Installers:
813
- Architecture: x64
9-
InstallerUrl: https://github.com/StefH/GitHubReleaseNotes/releases/download/1.0.8.0/Setup.msi
10-
InstallerSha256: 72631494A411447DAD239384FB45F19E9D6A4269F54EB930045B10BBE8154850
11-
ProductCode: '{32249977-C6C1-40ED-B6A8-7084E69A0E7}'
14+
- InstallerUrl: https://github.com/StefH/GitHubReleaseNotes/releases/download/1.0.8.0/Setup.msi
15+
- InstallerSha256: 72631494A411447DAD239384FB45F19E9D6A4269F54EB930045B10BBE8154850
1216
ManifestType: installer
13-
ManifestVersion: 1.4.0
17+
ManifestVersion: 1.5.0

0 commit comments

Comments
 (0)