Skip to content

Commit 72e5071

Browse files
committed
Tagged 1.7.1
1 parent f1c2988 commit 72e5071

File tree

3 files changed

+30
-8
lines changed

3 files changed

+30
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 1.7.1 (2025-02-10)
4+
5+
### Internal
6+
* [#97](https://github.com/ijlee2/ember-codemod-v1-to-v2/pull/97) Simplified lint configurations ([@ijlee2](https://github.com/ijlee2))
7+
* [#96](https://github.com/ijlee2/ember-codemod-v1-to-v2/pull/96) Updated eslint to v9 ([@ijlee2](https://github.com/ijlee2))
8+
9+
### Committers: 1
10+
- Isaac Lee ([@ijlee2](https://github.com/ijlee2))
11+
12+
313
## 1.7.0 (2025-01-15)
414

515
### Enhancement

CONTRIBUTING.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,31 @@ Here are some guidelines to help you and everyone else.
7070

7171
1. Generate a [personal access token](https://github.com/settings/tokens/) in GitHub, with default values for scopes (none selected).
7272

73-
1. Run the `release:changelog` script. This generates a text that you can add to `CHANGELOG.md`.
73+
1. Run the `release:prepare` script. This generates a text that you can add to `CHANGELOG.md`.
7474

7575
```sh
76-
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
76+
# From the workspace root
77+
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:prepare
7778
```
7879

79-
1. The package follows [semantic versioning](https://semver.org/). Update the version in `package.json` accordingly.
80+
The package follows [semantic versioning](https://semver.org/). Update the version in `package.json` accordingly (e.g. from `0.1.1` to `0.1.2`).
8081

81-
1. [Create a tag](https://github.com/ijlee2/ember-codemod-v1-to-v2/releases/new) and provide release notes. The tag name should match the package version.
82+
1. Review the file changes. Commit them in a branch, then open a pull request to merge the changes to the `main` branch.
83+
84+
```sh
85+
# From the workspace root
86+
git checkout -b tag-0.1.2
87+
git add .
88+
git commit -m "Tagged 0.1.2"
89+
git push origin tag-0.1.2
90+
```
91+
92+
1. [Create a tag](https://github.com/ijlee2/ember-codemod-v1-to-v2/releases/new) and provide release notes. The tag name should match the package version (e.g. `0.1.2`).
8293

8394
1. Publish the package.
8495

8596
```sh
97+
# From the workspace root
8698
pnpm release:publish
8799
```
88100

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-codemod-v1-to-v2",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "Codemod to convert Ember addons to v2 addon format",
55
"keywords": [
66
"codemod",
@@ -28,13 +28,13 @@
2828
],
2929
"scripts": {
3030
"build": "./build.sh --production",
31-
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
32-
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
31+
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
32+
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
3333
"lint:js": "eslint . --cache",
3434
"lint:js:fix": "eslint . --fix",
3535
"lint:types": "tsc --noEmit",
3636
"prepare": "pnpm build",
37-
"release:changelog": "lerna-changelog",
37+
"release:prepare": "lerna-changelog",
3838
"release:publish": "pnpm publish",
3939
"test": "./build.sh --test && mt dist-for-testing --quiet"
4040
},

0 commit comments

Comments
 (0)