File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -52,4 +52,5 @@ test_crash_handler
5252RELEASE_v *
5353
5454.github /drafts
55- amon10 /**
55+ amon10 /** # test chip
56+ chip_collection /** # collection of pcmp chips
Original file line number Diff line number Diff line change @@ -141,6 +141,26 @@ Debug logging is controlled via environment variables:
1411412 . ** Unknown warning option** : Check if flag is GCC-specific (use platform detection)
1421423 . ** X11 not found** : Ensure XQuartz is installed on macOS (` brew install --cask xquartz ` )
143143
144+ # Release workflow
145+
146+ ## Daily work - commit directly to main
147+ ``` bash
148+ git add < files>
149+ git commit -m " Description"
150+ git push origin main
151+ ```
152+
153+ ## For releases
154+ ``` bash
155+ echo " 6.4.0" > VERSION
156+ git add VERSION
157+ git commit -m " Bump version to 6.4.0"
158+ git tag -a v6.4.0 -m " Release v6.4.0: ..."
159+ git push origin main
160+ git push origin v6.4.0
161+ # Then create GitHub release - CI handles the rest!
162+ ```
163+
144164## Contributing
145165
146166When contributing code:
@@ -156,4 +176,3 @@ When contributing code:
156176- [ GNU C Extensions] ( https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html )
157177- [ Clang Compatibility] ( https://clang.llvm.org/docs/UsersManual.html#c )
158178- [ Standard C (C89/C99)] ( https://en.wikipedia.org/wiki/C99 )
159-
You can’t perform that action at this time.
0 commit comments