Skip to content

Commit

Permalink
Tagged 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Feb 4, 2025
1 parent 6b0a603 commit f69b4cf
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.0.10 (2025-02-04)

### Internal
* [#55](https://github.com/ijlee2/ember-codemod-args-to-signature/pull/55) Updated eslint to v9 ([@ijlee2](https://github.com/ijlee2))

### Committers: 1
- Isaac Lee ([@ijlee2](https://github.com/ijlee2))


## 1.0.9 (2024-12-27)

### Internal
Expand All @@ -8,6 +17,7 @@
### Committers: 1
- Isaac Lee ([@ijlee2](https://github.com/ijlee2))


## 1.0.8 (2024-08-28)

### Internal
Expand Down
20 changes: 16 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,31 @@ Here are some guidelines to help you and everyone else.

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

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

```sh
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
# From the workspace root
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:prepare
```

1. The package follows [semantic versioning](https://semver.org/). Update the version in `package.json` accordingly.
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`).

1. [Create a tag](https://github.com/ijlee2/ember-codemod-args-to-signature/releases/new) and provide release notes. The tag name should match the package version.
1. Review the file changes. Commit them in a branch, then open a pull request to merge the changes to the `main` branch.

```sh
# From the workspace root
git checkout -b tag-0.1.2
git add .
git commit -m "Tagged 0.1.2"
git push origin tag-0.1.2
```

1. [Create a tag](https://github.com/ijlee2/ember-codemod-args-to-signature/releases/new) and provide release notes. The tag name should match the package version (e.g. `0.1.2`).

1. Publish the package.

```sh
# From the workspace root
pnpm release:publish
```

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2024 Isaac J. Lee
Copyright (c) 2025 Isaac J. Lee

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-codemod-args-to-signature",
"version": "1.0.9",
"version": "1.0.10",
"description": "Codemod to component convert Args to Signature",
"keywords": [
"codemod",
Expand Down Expand Up @@ -34,7 +34,7 @@
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"prepare": "pnpm build",
"release:changelog": "lerna-changelog",
"release:prepare": "lerna-changelog",
"release:publish": "pnpm publish",
"test": "./build.sh --test && mt dist-for-testing --quiet"
},
Expand Down

0 comments on commit f69b4cf

Please sign in to comment.