Skip to content

Commit 3f8704d

Browse files
committed
Merge branch 'release/1.0.10'
2 parents 4d5d237 + f77d12d commit 3f8704d

File tree

5 files changed

+370
-328
lines changed

5 files changed

+370
-328
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ jobs:
129129
130130
# Create a new GitHub release using the gathered information
131131
- name: Create the release
132-
uses: nekofar/[email protected].11
132+
uses: nekofar/[email protected].12
133133
with:
134-
tag: ${{ steps.release.outputs.version }} # The name of the tag to be released
135-
title: ${{ steps.release.outputs.version }} # The title for the release
134+
tag: v${{ steps.release.outputs.version }} # The name of the tag to be released
135+
title: v${{ steps.release.outputs.version }} # The title for the release
136136
notes: ${{ steps.release.outputs.notes }} # The release notes generated in the previous step
137137
draft: true # The release will be created as a draft
138138
prerelease: ${{ contains(steps.release.outputs.version, '-rc') || contains(steps.release.outputs.version, '-beta') || contains(steps.release.outputs.version, '-alpha') }} # Conditions to mark the release as a pre-release

.github/workflows/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# Steps instances
2424
steps:
2525
- name: Checkout code
26-
uses: actions/[email protected].2
26+
uses: actions/[email protected].3
2727

2828
- name: Set up Node.js environment
2929
uses: actions/[email protected]

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.10] - 2023-07-30
6+
7+
### <!-- 07 -->Continuous Integrations
8+
9+
- Add `v` prefix to release tag and title in build workflow
10+
- Bump actions/checkout from 3.5.2 to 3.5.3
11+
- Bump nekofar/create-github-release from 1.0.11 to 1.0.12
12+
13+
### <!-- 08 -->Miscellaneous Tasks
14+
15+
- Bump jest-environment-jsdom from 29.5.0 to 29.6.2
16+
- Bump @testing-library/jest-dom and @types/testing-library__jest-dom
17+
- Bump jest and @types/jest
18+
- Add `typesync` step to `preinstall` script
19+
- Update ESLint related packages for better type compatibility
20+
521
## [1.0.9] - 2023-07-30
622

723
### <!-- 07 -->Continuous Integrations

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nextjs-lingui-template",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -12,7 +12,8 @@
1212
"lingui:extract": "lingui extract --clean",
1313
"lingui:compile": "lingui compile",
1414
"format": "prettier --log-level error --write .",
15-
"test": "jest"
15+
"test": "jest",
16+
"preinstall": "pnpx typesync || :"
1617
},
1718
"dependencies": {
1819
"@headlessui/react": "1.7.16",
@@ -32,21 +33,23 @@
3233
"@lingui/loader": "4.3.0",
3334
"@lingui/macro": "4.3.0",
3435
"@lingui/swc-plugin": "4.0.4",
35-
"@testing-library/jest-dom": "5.16.5",
36+
"@testing-library/jest-dom": "5.17.0",
3637
"@testing-library/react": "14.0.0",
3738
"@testing-library/user-event": "14.4.3",
38-
"@types/jest": "29.5.0",
39+
"@types/eslint": "8.44.1",
40+
"@types/eslint-config-prettier": "6.11.0",
41+
"@types/jest": "29.5.3",
3942
"@types/langs": "2.0.1",
4043
"@types/node": "20.4.5",
4144
"@types/react": "18.2.17",
4245
"@types/react-dom": "18.2.7",
43-
"@types/testing-library__jest-dom": "5.14.5",
46+
"@types/testing-library__jest-dom": "5.14.9",
4447
"autoprefixer": "10.4.14",
4548
"eslint": "8.46.0",
4649
"eslint-config-next": "13.4.12",
4750
"eslint-config-prettier": "8.9.0",
48-
"jest": "29.5.0",
49-
"jest-environment-jsdom": "29.5.0",
51+
"jest": "29.6.2",
52+
"jest-environment-jsdom": "29.6.2",
5053
"postcss": "8.4.27",
5154
"prettier": "3.0.0",
5255
"prettier-plugin-organize-imports": "3.2.3",

0 commit comments

Comments
 (0)