Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rel: prep v0.12.0 #112

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# buildevents-orb changelog

## [0.12.0] - 2024-10-17

### Enhancements

- feat(w3c): partially implement w3c tracecontext (#110) | [Liz Fong-Jones](https://github.com/lizthegrey)
- feat(w3c): add BE trace_id and TRACEPARENT to env (#114) | [Liz Fong-Jones](https://github.com/lizthegrey)

### Maintenance

- maint(deps): upgrade buildevents binary (#111) | [Liz Fong-Jones](https://github.com/lizthegrey)
- docs: update vulnerability reporting process (#109) | [Robb Kidd](https://github.com/robbkidd)
- maint: update repo for pipeline team ownership (#108) | [Jamie Danielson](https://github.com/JamieDanielson)
- change codeowners to pipeline (#107) | [Brooke Sargent](https://github.com/brookesargent)

## [0.11.1] - 2024-03-19

### Fixed
Expand Down
27 changes: 24 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
# Releasing

- Update `CHANGELOG.md` with the changes since the last release. Consider automating with a command such as these two:
- `git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline > new-in-this-release.log`
- `git log --pretty='%C(green)%d%Creset- %s | [%an](https://github.com/)'`
- Update [example](./src/examples/example.yml) with new version to be released.
- Update `CHANGELOG.md` with the changes since the last release.
- Use below command to get a list of all commits since last release

```sh
git log <last-release-tag>..HEAD --pretty='%Creset- %s | [%an](https://github.com/%an)'
```

- Copy the output from the command above into the top of [changelog](./CHANGELOG.md)
- fix each `https://github.com/<author-name>` to point to the correct github username
(the `git log` command can't do this automatically)
- organize each commit based on their prefix into below three categories:

```sh
### Features
- <a-commit-with-feat-prefix>

### Fixes
- <a-commit-with-fix-prefix>

### Maintenance
- <a-commit-with-maintenance-prefix>
```

- Commit changes, push, and open a release preparation pull request for review.
- Once the pull request is merged, fetch the updated `main` branch.
- Apply a tag for the new version on the merged commit (e.g. `git tag -a v2.3.1 -m "v2.3.1"`)
Expand Down
2 changes: 1 addition & 1 deletion src/examples/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description: Basic usage of the buildevents-orb.
usage:
version: 2.1
orbs:
buildevents: honeycombio/buildevents@0.11.0
buildevents: honeycombio/buildevents@0.12.0
shellcheck: circleci/[email protected]
workflows:
ci:
Expand Down
Loading