Skip to content

Commit

Permalink
Update changelog for 1.20.1 patch release (#4953)
Browse files Browse the repository at this point in the history
* Update changelog for 1.20.1 patch release

* Disable jApiCmp diff check on release branches

* Disable japicmp when base_ref is release
  • Loading branch information
jack-berg committed Nov 15, 2022
1 parent 6de8e97 commit 5c77655
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
-Porg.gradle.java.installations.paths=${{ steps.setup-java-test.outputs.path }},${{ steps.setup-java.outputs.path }}
- name: Check for diff
# The jApiCmp diff compares current to latest, which isn't appropriate for release branches
if: ${{ !startsWith(github.ref_name, 'release/') && !startsWith(github.base_ref, 'release/') }}
run: |
if git diff --quiet
then
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Bugfixes

* Fix bug in `ComponentRegistry` that produces `ConcurrentModificationException` when reading
metrics at the same time as obtaining a meter.
[(#4951)](https://github.com/open-telemetry/opentelemetry-java/pull/4951)

## Version 1.20.0 (2022-11-11)

### API
Expand Down

0 comments on commit 5c77655

Please sign in to comment.