Skip to content

Commit

Permalink
update changelog and bump minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsloughter committed Oct 5, 2024
1 parent 332119b commit 6454395
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Exporter
## Exporter 1.8.0 - 2024-10-05

### Fixes

Expand All @@ -18,6 +18,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
adding to the
attributes](https://github.com/open-telemetry/opentelemetry-erlang/pull/737)

## API 1.4.0 - 2024-10-05

### Changes

- [Hard code semconv 0.2 values](https://github.com/open-telemetry/opentelemetry-erlang/pull/780)

## SDK 1.5.0 - 2024-10-05

### Changes

- [Fix invalid warning log causing FORMATTER
CRASH](https://github.com/open-telemetry/opentelemetry-erlang/pull/774)
- [Hard code semconv 0.2 values](https://github.com/open-telemetry/opentelemetry-erlang/pull/780)

## API 1.3.1 - 2024-09-03

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion apps/opentelemetry/src/opentelemetry.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry,
[{description, "Implementation of stable OpenTelemetry signals"},
{vsn, "1.4.1"},
{vsn, "1.5.0"},
{registered, [
%% global tracer provider supervisor for use by the API
otel_tracer_provider_sup
Expand Down
2 changes: 1 addition & 1 deletion apps/opentelemetry_api/src/opentelemetry_api.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry_api,
[{description, "OpenTelemetry API"},
{vsn, "1.3.2"},
{vsn, "1.4.0"},
{registered, []},
{applications,
[kernel,
Expand Down
4 changes: 2 additions & 2 deletions apps/opentelemetry_exporter/rebar.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{erl_opts, [debug_info]}.
{deps, [{grpcbox, ">= 0.0.0"},
{tls_certificate_check, "~> 1.18"},
{opentelemetry, "~> 1.4.0"},
{opentelemetry_api, "~> 1.3.0"}]}.
{opentelemetry, "~> 1.5.0"},
{opentelemetry_api, "~> 1.4.0"}]}.

{grpc, [{protos, ["opentelemetry-proto/opentelemetry/proto/collector/trace/v1",
"opentelemetry-proto/opentelemetry/proto/collector/metrics/v1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, opentelemetry_exporter,
[{description, "OpenTelemetry Protocol Exporter"},
{vsn, "1.7.0"},
{vsn, "1.8.0"},
{registered, []},
{applications,
[kernel,
Expand Down
6 changes: 3 additions & 3 deletions docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ set -e

rebar3 compile
rebar3 edoc
sdk_version=1.4.1
api_version=1.3.2
sdk_version=1.5.0
api_version=1.4.0
exp_sdk_version=0.5.1
exp_api_version=0.5.1
otlp_version=1.7.0
otlp_version=1.8.0
zipkin_version=1.1.0
semconv_version=0.2.0

Expand Down

0 comments on commit 6454395

Please sign in to comment.