Skip to content

Commit

Permalink
grate version bump to 1.6.2 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
franhoey authored May 2, 2024
1 parent 6367ae2 commit 78d6dae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/frosting/build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static class Program
public static int Main(string[] args)
{
return new CakeHost()
.InstallTool(new Uri("dotnet:?package=grate&version=1.5.4"))
.InstallTool(new Uri("dotnet:?package=grate&version=1.6.2"))
.Run(args);
}
}
Expand Down
2 changes: 1 addition & 1 deletion demo/script/build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#tool "dotnet:?package=grate&version=1.5.4"
#tool "dotnet:?package=grate&version=1.6.2"
#r "..\..\src\Cake.grate\bin\Debug\net8.0\Cake.grate.dll"

///////////////////////////////////////////////////////////////////////////////
Expand Down
10 changes: 9 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ From the grate documentation:

- [Install](#install)
- [Usage](#usage)
- [Compatibility](#compatibility)


## Install
Expand All @@ -24,7 +25,7 @@ From the grate documentation:
## Usage

```cs
#tool "dotnet:?package=grate&version=1.5.4"
#tool "dotnet:?package=grate&version=1.6.2"
#addin nuget:?package=Cake.grate

Task("MyTask").Does(() => {
Expand All @@ -34,6 +35,13 @@ Task("MyTask").Does(() => {
});
});
```

## Compatibility

The version number of Cake.grate keeps in step with the versions released by [grate](https://github.com/erikbra/grate/releases), e.g. 1.6.2 of Cake.grate has been tested against and contains the features of grate version 1.6.2.

However, providing there are no breaking changes in a more recent grate version, it is likely Cake.grate will be compatible with it, just specify grate version in the `tool` referenc

[githubbuild]: https://github.com/cake-contrib/Cake.grate/actions/workflows/build.yml?query=branch%3Amain
[githubimage]: https://github.com/cake-contrib/Cake.grate/actions/workflows/build.yml/badge.svg?branch=main
[nuget]: https://nuget.org/packages/Cake.grate
Expand Down

0 comments on commit 78d6dae

Please sign in to comment.