Skip to content

Commit 18b3376

Browse files
committed
Merge branch 'release/1.1.3'
2 parents c06d170 + 19329bd commit 18b3376

File tree

9 files changed

+1446
-5957
lines changed

9 files changed

+1446
-5957
lines changed

.github/workflows/npm-publish.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ jobs:
1111
publish:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
16-
with:
17-
node-version: 14
18-
- run: npm ci
19-
- uses: JS-DevTools/npm-publish@v1
14+
- uses: actions/checkout@v4
15+
- uses: JS-DevTools/npm-publish@v3
2016
with:
2117
token: ${{ secrets.NPM_TOKEN }}
18+
- uses: actions/create-release@v1
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
with:
22+
tag_name: ${{ github.ref }}
23+
release_name: v${{ github.ref_name }}
24+
body: Please refer to [CHANGELOG.md](https://github.com/studiometa/prettier-formatter-gitlab/blob/${{ github.ref_name }}/CHANGELOG.md) for details.
25+
draft: false

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules/
33
*.log
44
/.data/
55
gl-prettier-codequality.json
6+
/.eslintcache

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12
1+
20

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
### v1.1.3 - 2024.03.12
10+
11+
### Fixed
12+
13+
- Fix Prettier version constraint ([9924fa5](https://github.com/studiometa/prettier-formatter-gitlab/commit/9924fa5))
14+
- Fix report format ([02467bd](https://github.com/studiometa/prettier-formatter-gitlab/commit/02467bd), [489b4ae](https://github.com/studiometa/prettier-formatter-gitlab/commit/489b4ae))
15+
16+
### Changed
17+
18+
- Simplify NPM pulbish action ([4ed273f](https://github.com/studiometa/prettier-formatter-gitlab/commit/4ed273f))
19+
- Update Node v12 → v20 ([f59fcb4](https://github.com/studiometa/prettier-formatter-gitlab/commit/f59fcb4))
20+
21+
### v1.1.2 - 2022.03.11
22+
23+
### Fixed
24+
25+
- Display error message when failing ([c73c707](https://github.com/studiometa/prettier-formatter-gitlab/commit/c73c707))
26+
27+
## v1.1.1 - 2020.11.20
28+
29+
### Fixed
30+
31+
- Move the prettier package to peer dependencies ([d90f326](https://github.com/studiometa/prettier-formatter-gitlab/commit/d90f326))
32+
33+
## v1.1.0 - 2020.11.20
34+
35+
### Changed
36+
37+
- Improve the output of errors ([95b0001](https://github.com/studiometa/prettier-formatter-gitlab/commit/95b0001))
38+
39+
## v1.0.0 - 2020.10.22
40+
41+
First release! 🎉

0 commit comments

Comments
 (0)