Cake.Bumpy

Cake Addin that extends Cake with the ability to manage version information in a project using bumpy.exe

#addin nuget:?package=Cake.Bumpy&version=0.10.0

dotnet add package Cake.Bumpy --version 0.10.0

<PackageReference Include="Cake.Bumpy" Version="0.10.0" />

Aliases

Contains functionality related to the command line tool Bumpy.

In order to use the commands for this addin, you will need to include the following in your build.cake file to download and reference from NuGet.org:

#tool Bumpy
In addition, you will need to include the following:
#addin Cake.Bumpy

General

BumpyAssign(int, int, BumpySettings) Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
BumpyAssign(int, int) Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
BumpyEnsure(BumpySettings) Runs "bumpy.exe ensure" to check if all versions in a profile are equal.
BumpyEnsure() Runs "bumpy.exe ensure" to check if all versions in a profile are equal.
BumpyIncrement(int, BumpySettings) Runs "bumpy.exe increment [position]" to increment all versions at the given position by one.
BumpyIncrement(int) Runs "bumpy.exe increment [position]" to increment all versions at the given position by one.
BumpyIncrementOnly(int, BumpySettings) Runs "bumpy.exe incrementonly [position]" to increment all versions at the given position by one, without updating following components.
BumpyIncrementOnly(int) Runs "bumpy.exe incrementonly [position]" to increment all versions at the given position by one, without updating following components.
BumpyLabel(string, BumpySettings) Runs "bumpy.exe label [text]" to replace the postfix text of a version.
BumpyLabel(string) Runs "bumpy.exe label [text]" to replace the postfix text of a version.
BumpyList(BumpySettings) Runs "bumpy.exe list" to list all versions.
BumpyList() Runs "bumpy.exe list" to list all versions.
BumpyNew() Runs "bumpy.exe new" to create a new configuration file if one does not exist.
BumpyWrite(string, BumpySettings) Runs "bumpy.exe write [version]" to overwrite all versions.
BumpyWrite(string) Runs "bumpy.exe write [version]" to overwrite all versions.