Skip to content

Commit

Permalink
Merge pull request #12 from fourmolu/bump-to-0.9.0.0
Browse files Browse the repository at this point in the history
bump to fourmolu-0.9.0.0
  • Loading branch information
wraithm authored Nov 11, 2022
2 parents d88033a + 1f0bc3a commit e99dcf3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Fourmolu action v5

* Uses Fourmolu 0.9.0.0.

## Fourmolu action v4

* Uses Fourmolu 0.8.2.0.
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,13 @@ v3 Latest v3 2022-08-09T15:11:02Z
```

The most recent release in this case is `v3`, so if you want to make a new
release, just bump the version by one:
release, just bump the version by one to `v4`:

```console
$ gh release create --notes "This release uses fourmolu-0.9.0.0." --title "v4" v4
$ vim ./CHANGELOG.md # add an entry for this new v4 release
$ git commit -m 'bumping to v4 with fourmolu-0.9.0.0' # create a commit for the new changelog
$ git push # push the changelog commit to the remote master branch
$ gh release create --notes "This release uses fourmolu-0.9.0.0." --title "v4" v4 # make a Release on GitHub
```

You may then want to run `git fetch` to fetch the new tag that has been
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const tool_cache = __webpack_require__(7784);
const exec = __webpack_require__(1514);
const glob = __webpack_require__(8090);

const fourmolu_version = '0.8.2.0';
const fourmolu_version = '0.9.0.0';

// XXX: These release binaries appear to be dynamically linked, so they may not
// run on some systems.
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const tool_cache = require('@actions/tool-cache');
const exec = require('@actions/exec');
const glob = require('@actions/glob');

const fourmolu_version = '0.8.2.0';
const fourmolu_version = '0.9.0.0';

// XXX: These release binaries appear to be dynamically linked, so they may not
// run on some systems.
Expand Down

0 comments on commit e99dcf3

Please sign in to comment.