You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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`).
80
81
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`).
0 commit comments