Skip to content

Commit

Permalink
Release 2.0.0-rc.9 (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared committed Nov 6, 2022
1 parent 3d3dc58 commit 5063068
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
as well as to [Module version numbering](https://go.dev/doc/modules/version-numbers).

## [Unreleased](https://github.com/goyek/goyek/compare/v2.0.0-rc.8...HEAD)
## [Unreleased](https://github.com/goyek/goyek/compare/v2.0.0-rc.9...HEAD)

<!-- markdownlint-disable-next-line line-length -->
## [2.0.0-rc.9](https://github.com/goyek/goyek/compare/v2.0.0-rc.8...v2.0.0-rc.9) - 2022-11-06

This release introduces a breaking change as it renames
the heavily used `TF` type to `A`. This follows the convention
used in [`testing`](https://pkg.go.dev/testing) package
to name the parameter type as the first letter of the "function type".

### Added

Expand Down
4 changes: 1 addition & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ The repository contains basic confiugration for

Create a pull request named `Release <version>` that does the following:

1. Review all places where the current version is used:
- [`README.md`](README.md)
- [`build/go.mod`](build/go.mod)
1. Review all places where the current version is used [`README.md`](README.md).
1. Remove the changed API warning in [`README.md`](README.md) if it is present.
1. Add documentation or examples if it they are missing.
1. Update [`CHANGELOG.md`](CHANGELOG.md).
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Please ⭐ `Star` this repository if you find it valuable and worth maintaining.

---

This README documents the latest `v2.0.0-rc.8` release.
This README documents the latest `v2.0.0-rc.9` release.
The documentation for `v1.1.0` can be found on [pkg.go.dev](https://pkg.go.dev/github.com/goyek/goyek).

---
Expand Down Expand Up @@ -219,8 +219,8 @@ Simply add them to your repository's root directory
and make sure to add the `+x` permission:

```sh
curl -sSfL https://raw.githubusercontent.com/goyek/goyek/v2.0.0-rc.8/goyek.sh -O
curl -sSfL https://raw.githubusercontent.com/goyek/goyek/v2.0.0-rc.8/goyek.ps1 -O
curl -sSfL https://raw.githubusercontent.com/goyek/goyek/v2.0.0-rc.9/goyek.sh -O
curl -sSfL https://raw.githubusercontent.com/goyek/goyek/v2.0.0-rc.9/goyek.ps1 -O
git add --chmod=+x goyek.sh goyek.ps1
```

Expand Down
6 changes: 3 additions & 3 deletions build/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ module github.com/goyek/goyek/build

go 1.19

replace github.com/goyek/goyek/v2 => ../

require (
github.com/client9/misspell v0.3.4
github.com/golangci/golangci-lint v1.50.1
github.com/goyek/goyek/v2 v2.0.0-rc.8
github.com/goyek/goyek/v2 v2.0.0-00010101000000-000000000000
github.com/mattn/go-shellwords v1.0.12
)

Expand Down Expand Up @@ -179,5 +181,3 @@ require (
mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect
mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 // indirect
)

replace github.com/goyek/goyek/v2 => ../

0 comments on commit 5063068

Please sign in to comment.