@@ -108,29 +108,29 @@ This will generate an HTML representation of code coverage throughout the repo t
108108
109109To release snooty, do the following:
110110
111- * Make sure you are on the ` master ` branch.
111+ 1 . Make sure you are on the ` master ` branch.
112112
113- * Ensure that the "Unreleased" section of CHANGELOG.md is up-to-date.
113+ 2 . Ensure that the "Unreleased" section of CHANGELOG.md is up-to-date.
114114
115- * Run ` make cut-release BUMP_TO_VERSION="<new_version>" ` .
115+ 3 . Run ` make cut-release BUMP_TO_VERSION="<new_version>" ` .
116116
117- The new version number should follow [ semantic versioning] ( https://semver.org ) :
118- ` MAJOR.MINOR.PATCH ` . For example, ` make cut-release BUMP_TO_VERSION="0.1.2" ` .
119- Refer to ` snooty/__init__.py ` for the current version number.
117+ The new version number should follow [ semantic versioning] ( https://semver.org ) :
118+ ` MAJOR.MINOR.PATCH ` . For example, ` make cut-release BUMP_TO_VERSION="0.1.2" ` .
119+ Refer to ` snooty/__init__.py ` for the current version number.
120120
121- This will create a new tag named ` v<new_version> ` and push it to your origin,
122- causing Github Actions to trigger the release process. After several minutes
123- (you can monitor its progress at < https://github.com/mongodb/snooty-parser/actions > ),
124- a new release should be created with binaries for supported platforms.
121+ This will create a new tag named ` v<new_version> ` and push it to your origin,
122+ causing Github Actions to trigger the release process. After several minutes
123+ (you can monitor its progress at < https://github.com/mongodb/snooty-parser/actions > ),
124+ a new release should be created with binaries for supported platforms.
125125
126- You can instruct the ` cut-release ` target to avoid pushing the tag by passing the
127- ` PUSH_TO="" ` option. For example, ` make cut-release BUMP_TO_VERSION="0.1.2" PUSH_TO="" ` .
126+ You can instruct the ` cut-release ` target to avoid pushing the tag by passing the
127+ ` PUSH_TO="" ` option. For example, ` make cut-release BUMP_TO_VERSION="0.1.2" PUSH_TO="" ` .
128128
129- * Go to < https://github.com/mongodb/snooty-parser/releases/ > to locate the newly-created
130- release.
129+ 4 . Go to < https://github.com/mongodb/snooty-parser/releases/ > to locate the newly-created
130+ release.
131131
132- * Copy the appropriate section from CHANGELOG.md into the release description, and
133- check the _ This is a pre-release_ checkbox.
132+ 5 . Copy the appropriate section from CHANGELOG.md into the release description, and
133+ check the _ This is a pre-release_ checkbox.
134134
135135If there is an error, use ` git reset --hard <previous_commit_hash> ` to revert any
136136commits that might have been made, and
0 commit comments