Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grate version bump to 1.6.2 #8

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading