@@ -20,7 +20,7 @@ changes that have been made, and also to provide a changelog for our users.
20201 . Create a new release branch
2121
2222 ``` bash
23- git checkout -b release/v1 .0.0
23+ git checkout -b release/v2 .0.0
2424 ```
2525
2626## Task 2: Update the Release Version
@@ -30,13 +30,13 @@ releases and changelogs. In order to generate a release, you will need to update
3030the version number in the ` package.json ` file.
3131
32321 . Open the [ ` package.json ` ] ( ../package.json ) file in your editor
33- 1 . Change the value of the ` version ` key to ` 1 .0.0`
33+ 1 . Change the value of the ` version ` key to ` 2 .0.0`
3434
3535 ``` jsonc
3636 {
3737 " name" : " @githubschool/gh-github-intermediate-template" ,
3838 " description" : " GitHub Intermediate Training - Template" ,
39- " version" : " 1 .0.0" ,
39+ " version" : " 2 .0.0" ,
4040 // ...
4141 ` ` `
4242
@@ -45,10 +45,10 @@ the version number in the `package.json` file.
4545
4646 ` ` ` bash
4747 git add package .json
48- git commit - m " Release version 1 .0.0"
48+ git commit - m " Release version 2 .0.0"
4949 ` ` `
5050
51- 1. Push the ` release/ v1 .0 .0 ` branch to GitHub
51+ 1. Push the ` release/ v2 .0 .0 ` branch to GitHub
5252
5353 ` ` ` bash
5454 git push
@@ -59,7 +59,7 @@ the version number in the `package.json` file.
59591. In your browser, navigate to your repository on GitHub
60601. Click on the **Pull requests** tab
61611. Click the **New pull request** button
62- 1. Click the **Compare** button, then select your ` release/ v1 .0 .0 ` branch
62+ 1. Click the **Compare** button, then select your ` release/ v2 .0 .0 ` branch
63631. Click **Create pull request**
64641. Enter a title and description for your PR
65651. Click **Create pull request**
@@ -80,7 +80,7 @@ As other people in the class post their PRs, try to review and approve one.
80801. Ensure **Approve** is selected as the review type
81811. Click **Submit review**
8282
83- 
83+ 
8484
8585## Task 5: Merge the Pull Request
8686
@@ -107,13 +107,13 @@ Once your PR has been approved, you can merge it into `main`.
107107## Task 7: View the Release
108108
1091091. In your browser, navigate to your repository on GitHub
110- 1. Click on the **v1 .0.0** link in the **Releases** section
110+ 1. Click on the **v2 .0.0** link in the **Releases** section
111111
112112 
113113
1141141. Review the auto-generated release notes
115115
116- <!-- TODO Screenshot -->
116+ 
117117
118118## Need Help?
119119
0 commit comments