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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -283,8 +283,8 @@ Our release strategy is based on Semantic Versioning and utilizes tagged commits
283
283
2. **Determine Release Type:** Assess the nature of the changes included in this release to determine the appropriate semantic version increment:
284
284
285
285
***Major Change (Breaking):** Increment the major version (e.g., `v1.0.0` to `v2.0.0`).
286
-
***Minor Change (New Feature):** Increment the minor version (e.g., `v1.0.0` to `v1.1.0`).
287
-
***Patch/Fix (Bug Fixes, Minor Updates):** Increment the patch version (e.g., `v1.0.0` to `v1.0.1`).
286
+
***Minor Change (New Feature):** Increment the minor version (e.g., `v0.1.0` to `v0.2.0`).
287
+
***Patch/Fix (Bug Fixes, Minor Updates):** Increment the patch version (e.g., `v0.0.1` to `v0.0.2`).
288
288
289
289
3. **Identify the Previous Tag (Optional):** You can view existing tags to understand the current release version. Either visit the "Releases" or "Tags" section of the repository on GitHub, or run the following command locally:
290
290
@@ -301,7 +301,7 @@ Our release strategy is based on Semantic Versioning and utilizes tagged commits
301
301
For example, if it's a minor release, you might use:
302
302
303
303
```bash
304
-
git tag v1.1.0
304
+
git tag v0.2.0
305
305
```
306
306
307
307
5. **Push the Tag to Remote:** Push the newly created tag to the `origin` remote repository. This action will automatically trigger the publish/release workflow:
0 commit comments