Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

23,765

Downloads of v 0.12.1:

388

Last Update:

20 Sep 2021

Package Maintainer(s):

Software Author(s):

  • GitTools Contributors

Tags:

github release notes create export

GitReleaseManager

This is not the latest version of GitReleaseManager available.

  • 1
  • 2
  • 3

0.12.1 | Updated: 20 Sep 2021

Downloads:

23,765

Downloads of v 0.12.1:

388

Maintainer(s):

Software Author(s):

  • GitTools Contributors

GitReleaseManager 0.12.1

This is not the latest version of GitReleaseManager available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install GitReleaseManager, run the following command from the command line or from PowerShell:

>

To upgrade GitReleaseManager, run the following command from the command line or from PowerShell:

>

To uninstall GitReleaseManager, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade gitreleasemanager.portable -y --source="'INTERNAL REPO URL'" --version="'0.12.1'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade gitreleasemanager.portable -y --source="'INTERNAL REPO URL'" --version="'0.12.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install gitreleasemanager.portable
  win_chocolatey:
    name: gitreleasemanager.portable
    version: '0.12.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'gitreleasemanager.portable' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.12.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller gitreleasemanager.portable
{
    Name     = "gitreleasemanager.portable"
    Version  = "0.12.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'gitreleasemanager.portable':
  ensure   => '0.12.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 20 Sep 2021.

Description

Tool for creating and exporting releases for software applications from online Version Control Systems


LICENSE.TXT
The MIT License (MIT)

Copyright (c) 2015 - Present - GitTools Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
tools\AutoMapper.dll
md5: FF3C3D84A000D57EF7D443F594D407EC | sha1: 015D67A89C391A88980BAF84101CA8335E6C60A1 | sha256: 4DA9C752EADEEC7743CF15F2A7BB98CF1ECED9CAE8B0C8F047C18AE7AA9A6B48 | sha512: 158E686F16D1661D902884E33FEE4AFF986454033C14AA138C5944E7AAD92AE9902BE867E6585D8259F04D73F86910E49A3367CBF88DDFFABDB98C7408A5F500
tools\chocolateyInstall.ps1
Generate-BinFile "grm" "$packageFolder\Tools\GitReleaseManager.exe"
tools\chocolateyUninstall.ps1
Remove-BinFile "grm" "$packageFolder\Tools\GitReleaseManager.exe"
tools\CommandLine.dll
md5: D788B7DEDB2E07AB596569360FCD3154 | sha1: 3FEE00542701EA636C8A4DB60E96856CFE4DEB39 | sha256: 26AF31165DBF6AF3864609DF7834A06404E6CFBD8905BA202E0A0BB921326D57 | sha512: 1E83C8E64A63046D1C0A620C088CCBA5E7205539B249DC814B59A0360BD06DADD66D6D1E4B0B494C574D311FCA1103011691453D910CF32B6092DD8F492DC8D2
tools\Destructurama.Attributed.dll
md5: 7EABDC9525BD1814899DE66FEF6BE715 | sha1: 04CF3922EB9D39ADF9E3ACFE7CB5246C5F718C86 | sha256: AC6EF04B83CA3EC163E6998EF4904434BFFC0405A793AE5DBB2E800E3984DABB | sha512: A0B95E6F5212EA7C2CFA52E372143973F72254AEB67FE6032B1DB58B840F93EC9DA87E565BB696417BB5BD7B6DD9A3A35AF461CF51B0651FB2419EAD79CCADD0
tools\GitReleaseManager.Core.dll
md5: 145949C7B7B767D138BF9A8804321709 | sha1: 65B569D523B002D35928F04352D6422F47C556BA | sha256: C280C0E947D70B428C900D982A3C6E60AC990E61F77F9C79B583085D528F8BE2 | sha512: 7E13DF1A0DCD9FA6C311BF481C8948DF1D2A2A87FE4537862A8354C96F0D34BEDE89016CB5EF967644FEAF6839D19288F40218D5005FA13314C4484C56C31DE7
tools\GitReleaseManager.Core.pdb
 
tools\GitReleaseManager.exe
md5: 3297F39F9098095B3BD40A3B8CEAB083 | sha1: A6AD0391DF90768C5F8FB72AA26A34F0B9A9A2BA | sha256: F508221195CE28C2CC0EED5E20D80029D9FB9EF0A0B58C3CC7F84367CD269C86 | sha512: A44868822B3ACD500DF5B3B43D10B386FE940B319077DE8C057D0734E6F8020FB554D13B937327BF35C1BA6CBD73042443C695347644A9052051D9646AF84193
tools\GitReleaseManager.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\GitReleaseManager.pdb
 
tools\Microsoft.Bcl.AsyncInterfaces.dll
md5: 1EE251645B8A54A116D6D06C83A2BD85 | sha1: 5DBF1534FFBFF016CC45559EB5EFF3DC4252A522 | sha256: 075CE79E84041137C78885B3738C1B5A03547D0AE2A79916E844196A9D0EC1DB | sha512: 9F67FD0566EAC2DA4253D08697DAAB427E4E85780615D940F086A88424DCBB0563ABAE7E4824088E64EF7024C1BB3BBF324F2D07BC7BA55F79E4AF3C9EA88E97
tools\Microsoft.Extensions.DependencyInjection.Abstractions.dll
md5: 7A9B8793552CE40160A6D273B22F807E | sha1: 1C302EA0A44F517B97AF19252140EC710D5D3BFB | sha256: 200ABA7859ECFB045D43A8E2BF9ABCE4C929507364B7714388F59AFFE708FB06 | sha512: 7D5EA03D5815A6F5705875FE6C2D2179C6EE5468D6B19423F04C8982E64226E656BFD7CCAF7A5756C7046D2E6D2C3504190BA642E02BC197D48DAD9320FD6BD5
tools\Microsoft.Extensions.DependencyInjection.dll
md5: 57D84F4CFAB9ACBAF8229B8E760A9950 | sha1: 8B99A4DDA5C286EA7E128FD948BBCE673B4772A8 | sha256: 91D3C0C57412D57562913D50AE6A64DB613699A3A64553EEF089D178413AB3ED | sha512: DE3D1C146044E679AFDF28B576D064F972AEE582732F24ED362B90558136704DF53C7F5F5E5FD0ED3BD6BD012221F59FAE5A6016C127A346795072599BE175F2
tools\Octokit.dll
md5: 5CC84B97462E4FA22778F239782B3628 | sha1: 0D113036A011F56440D30530D874DAE4532EE027 | sha256: E21993D60BBDF057BC6EEC1778D132633E2516FC6CCDDD978008DB0C6A35404D | sha512: 0593D42D9B482F8276726F99C5805C0CFCEE82355CD21F4D205CAA9A80D949670B1F32588707891B1D5CDCEA35ACE00753639F0FD90682C8E322E520513F3425
tools\Scriban.dll
md5: B75A9E17EDB1338102652314016EF7B1 | sha1: 4C5C15876A4213E98CC85A68748E2BB8FB6F8BFF | sha256: 2F16C7556FA6C665D689DC175A9C73E3155E7A4D6A5F302AB00A87799AFDDF9A | sha512: 33C143440847EA22CDD09A9FAC7E1202A4BC26633BCE4489B7D80C734BEE8B0A354A079389E95ABC2FD31A2D7288D851CC575DC1F6947275E15D17716A32E14A
tools\Serilog.dll
md5: 0AA45A8A1CD24CD2B589E4AAD925F35D | sha1: 0DC29954C4C2FFEA4C33AF0E56CE84158849B81E | sha256: 7A26A473AF5EB7A00196E275C86D773F36E1D4CAEF566F97F1DF7E07E20B1670 | sha512: 7A865B16633C09BDECDA34FDF15C62DB4F04F2FB8DB0ABF57563AEA51DE67DAF9ECA0C08F053F551937A0C3C7987A53DE2454ECB13139A193291633DF7262981
tools\Serilog.Sinks.Console.dll
md5: C48BF7030E583E273E94E2D32B752A83 | sha1: 51666BCEC96F529B1A28B72DB54CC7FCDF68441D | sha256: DED3B57B64ECA479F2A659A244E4C403EBFB83A9A9B30CED893C145E77AFFD29 | sha512: 475E61BBB4484F468548DD7590D1D0BCC19912B322EACF2960B32C2C3FF1084231DDF8E689735E385A1F43E9912F79A028EAE136C7DC8E130F2D3DD1EAF1F004
tools\Serilog.Sinks.File.dll
md5: 4C2B0737D9A73DA09172D3C210B0265D | sha1: A35A98EC72154CC1D112F46BD177A7F043DBCD46 | sha256: 6D8D84C9C14201674D9A309F51E952CF148AD33CDB66507D9677EBF1B1E4432B | sha512: C605BEF0A7CAA12B0D7C47564C3A214EA1DB40F901DFDC4C5B35BF73610A5D9030B67E495B409A79C76AD5EC6EF9962CD56C050C51883A3151D34931A8361AA8
tools\System.Runtime.CompilerServices.Unsafe.dll
md5: DA04A75DDC22118ED24E0B53E474805A | sha1: 2D68C648A6A6371B6046E6C3AF09128230E0AD32 | sha256: 66409F670315AFE8610F17A4D3A1EE52D72B6A46C544CEC97544E8385F90AD74 | sha512: 26AF01CA25E921465F477A0E1499EDC9E0AC26C23908E5E9B97D3AFD60F3308BFBF2C8CA89EA21878454CD88A1CDDD2F2F0172A6E1E87EF33C56CD7A8D16E9C8
tools\System.Threading.Tasks.Extensions.dll
md5: E1E9D7D46E5CD9525C5927DC98D9ECC7 | sha1: 2242627282F9E07E37B274EA36FAC2D3CD9C9110 | sha256: 4F81FFD0DC7204DB75AFC35EA4291769B07C440592F28894260EEA76626A23C6 | sha512: DA7AB8C0100E7D074F0E680B28D241940733860DFBDC5B8C78428B76E807F27E44D1C5EC95EE80C0B5098E8C5D5DA4D48BCE86800164F9734A05035220C3FF11
tools\YamlDotNet.dll
md5: 511F56E9718EA3158F828DA9DDFCAE27 | sha1: 13BF35F7D7366D87FD5C821E5A6A319ECE65C734 | sha256: B6E97626F9B5CE6D25F08506ED046011610554E4A9B4A565311CC0354E38C575 | sha512: AB461B1336643B40C600D089B594EC0FECA79045838522D235212B43EB2DF6F409B6588E8EBB9595F6E0515FBBB7F7AFF8C3FF9D2B7942F64B936F9E3D90BF44
VERIFICATION.TXT
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.

This package is owned and updated by the members of the GitTools Organisation on GitHub:

https://github.com/GitTools

The files contained within this Chocolatey Package are the same as those that are hosted on our releases page:

https://github.com/GitTools/GitReleaseManager/releases

If you have any concerns about the contents of this package, please raise an issue here:

https://github.com/GitTools/GitReleaseManager/releases

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
GitReleaseManager 0.16.0 85 Tuesday, November 14, 2023 Approved
GitReleaseManager 0.15.0 85 Wednesday, August 23, 2023 Approved
GitReleaseManager 0.14.0 43 Tuesday, August 22, 2023 Approved
GitReleaseManager 0.13.0 640 Monday, January 31, 2022 Approved
GitReleaseManager 0.12.1 388 Monday, September 20, 2021 Approved
GitReleaseManager 0.12.0 473 Monday, May 31, 2021 Approved
GitReleaseManager 0.11.0 3194 Monday, March 16, 2020 Approved
GitReleaseManager 0.10.3 493 Saturday, January 25, 2020 Approved
GitReleaseManager 0.10.2 264 Wednesday, January 15, 2020 Approved
GitReleaseManager 0.10.0 167 Monday, January 13, 2020 Approved
GitReleaseManager 0.9.0 480 Tuesday, November 19, 2019 Approved
GitReleaseManager 0.8.0 4073 Sunday, December 30, 2018 Approved
GitReleaseManager 0.7.1 3557 Saturday, May 19, 2018 Approved
GitReleaseManager 0.5.0 8561 Sunday, July 10, 2016 Approved
GitReleaseManager 0.4.0 519 Saturday, January 9, 2016 Approved
GitReleaseManager 0.3.0 462 Friday, July 10, 2015 Approved

This package has no dependencies.

Discussion for the GitReleaseManager Package

Ground Rules:

  • This discussion is only about GitReleaseManager and the GitReleaseManager package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or GitReleaseManager, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus