Skip to content

Commit

Permalink
bump versions of api, sdk and exporter to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan Sloughter committed Feb 3, 2022
1 parent 3b4f3a3 commit 4703768
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 1.0.1 - 2022-02-03

### [API]

#### Fixed

- [W3C Tracestate: Keep last value for duplicate key](https://github.com/open-telemetry/opentelemetry-erlang/pull/346)
- [add report_cb to format log messages in composite propagator to have more
detailed logs](https://github.com/open-telemetry/opentelemetry-erlang/pull/355)
- [Fix use of wrong timestamp format on events](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)

#### Fixed

### [SDK]

- [Fix use of wrong timestamp format on events](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)

### [Exporter]

#### Fixed

- [use the default port of the scheme (http/https) instead of default OTLP
port](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)

## 1.0.0 - 2022-01-03

### [SDK]
Expand Down
2 changes: 1 addition & 1 deletion apps/opentelemetry/rebar.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{erl_opts, [debug_info]}.
{deps, [{opentelemetry_api, "~> 1.0.0"}]}.
{deps, [{opentelemetry_api, "~> 1.0"}]}.
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.0.0"},
{vsn, "1.0.1"},
{registered, []},
{applications,
[kernel,
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.0.0"},
{vsn, "1.0.1"},
{registered, []},
{applications,
[kernel,
Expand Down
2 changes: 1 addition & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

rebar3 compile
rebar3 edoc
version=1.0.0
version=1.0.1

ex_doc "opentelemetry" $version "_build/default/lib/opentelemetry/ebin" \
--source-ref v${version} \
Expand Down

0 comments on commit 4703768

Please sign in to comment.