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: .github/CONTRIBUTING.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,9 @@ Just as in the **subject**, use the imperative, present tense: "change"; not "ch
130
130
131
131
The footer should contain any information about **Breaking Changes** and is also the place to reference GitHub issues that this commit **Closes**, **Fixes**, or **Relates to**.
132
132
133
-
> Breaking Changes are intended to be highlighted in the CHANGELOG as changes that will require community users to modify their code after updating to a version that contains this commit.
133
+
> Breaking Changes are intended to be highlighted in the CHANGELOG as MAJOR. The major version is increased IF:
134
+
> - A release contains major UI/functionality updates (e.g., new interface design) that significantly change the user workflow.
135
+
> - Breaking changes to the CLI (e.g., removing/renaming flags, changing output formats) that require users to update their scripts.
134
136
135
137
##### Sample Commit messages
136
138
@@ -167,6 +169,7 @@ One of the major benefits of this approach is that it will **automatically relea
167
169
- The master branch should always have working code that is tested. _Use Pull Requests to work on bigger features or bug fixes and merge them when you are ready._
168
170
- Every bugfix, feature, and change should have one commit associated with it. _Do not mix multiple bugs, features, etc., into one huge commit message. Keep your commit size small and commit often._
169
171
- Your commit messages must follow the [conventional commit rules](https://www.conventionalcommits.org/). Additionally, the Angular flavor is accepted as well.
172
+
- While the version is v0.x.y, breaking changes will result in an increase of the Minor version. The Major version will remain 0 until the initial stable release (v1.0.0).
170
173
171
174
#### Versioning Rules
172
175
@@ -208,7 +211,7 @@ The version bump is automatically determined based on your commit messages. Here
208
211
Okay, so here's the thing:
209
212
210
213
-**No GitHub issues generated by AI.**\
211
-
It won't be merged if it was written by a chatbot. Only open issues if you truly comprehend the feature or bug you're describing.
214
+
It won't be reviewed if it was written by a chatbot. Only open issues if you truly comprehend the feature or bug you're describing.
212
215
213
216
-**No "vibe coding".**\
214
217
Just because "it works on your machine" doesn't mean you should submit the code. It doesn't belong here if you can't explain what it does or why.
0 commit comments