Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco committed Mar 29, 2023
1 parent 66d9f99 commit 00b7495
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [3.0.0] - 2023-03-29

### :syringe: Fixed

- [#333](https://github.com/FantasticFiasco/action-update-license-year/issues/333) [BREAKING CHANGE] Update all licenses in a file, not only the first found (discovered by [@glimchb](https://github.com/glimchb)).
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ The action has support for the following inputs:
#
# - A capturing group named "from", encapsulating the first year of license
# validity
# - Written to support the RegExp flags "im" ("ignore case" and "multiline")
# - Written to support the RegExp flags "gmi" ("global", "multiline" and "ignore
# case")
#
# The expression will be used by String.prototype.replace() to apply the
# transformation.
Expand Down Expand Up @@ -304,7 +305,7 @@ This action has built in support for a couple of common licenses. However, you m
The transform is declared as a regular expression (JavaScript flavor) and must have the following properties:

- A capturing group named `from`, encapsulating the first year of license validity
- Written to support the RegExp flags `im` (`ignore case` and `multiline`)
- Written to support the RegExp flags `gmi` (`global`, `multiline` and `ignore case`)

The expression will be used by `String.prototype.replace()` to apply the transformation.

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ inputs:
- A capturing group named "from", encapsulating the first year of license validity
- Written to support the RegExp flags "im" ("ignore case" and "multiline")
- Written to support the RegExp flags "gmi" ("global", "multiline" and "ignore case")
The expression will be used by String.prototype.replace() to apply the
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action-update-license-year",
"version": "2.3.0",
"version": "3.0.0",
"description": "GitHub Action that in a pull request updates the copyright year(s) in your license file.",
"keywords": [
"github",
Expand Down

0 comments on commit 00b7495

Please sign in to comment.