Skip to content

Commit e99dcf3

Browse files
authored
Merge pull request #12 from fourmolu/bump-to-0.9.0.0
bump to fourmolu-0.9.0.0
2 parents d88033a + 1f0bc3a commit e99dcf3

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Fourmolu action v5
2+
3+
* Uses Fourmolu 0.9.0.0.
4+
15
## Fourmolu action v4
26

37
* Uses Fourmolu 0.8.2.0.

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,13 @@ v3 Latest v3 2022-08-09T15:11:02Z
149149
```
150150

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

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

158161
You may then want to run `git fetch` to fetch the new tag that has been

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const tool_cache = __webpack_require__(7784);
2020
const exec = __webpack_require__(1514);
2121
const glob = __webpack_require__(8090);
2222

23-
const fourmolu_version = '0.8.2.0';
23+
const fourmolu_version = '0.9.0.0';
2424

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

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const tool_cache = require('@actions/tool-cache');
77
const exec = require('@actions/exec');
88
const glob = require('@actions/glob');
99

10-
const fourmolu_version = '0.8.2.0';
10+
const fourmolu_version = '0.9.0.0';
1111

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

0 commit comments

Comments
 (0)