Skip to content

Commit a22867b

Browse files
committed
ignore pcmp chip collection
1 parent a00c9a0 commit a22867b

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ test_crash_handler
5252
RELEASE_v*
5353

5454
.github/drafts
55-
amon10/**
55+
amon10/** # test chip
56+
chip_collection/** # collection of pcmp chips

DEVELOPER.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,26 @@ Debug logging is controlled via environment variables:
141141
2. **Unknown warning option**: Check if flag is GCC-specific (use platform detection)
142142
3. **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

146166
When 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-

0 commit comments

Comments
 (0)