Skip to content

Commit 4703768

Browse files
author
Tristan Sloughter
committed
bump versions of api, sdk and exporter to 1.0.1
1 parent 3b4f3a3 commit 4703768

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## 1.0.1 - 2022-02-03
11+
12+
### [API]
13+
14+
#### Fixed
15+
16+
- [W3C Tracestate: Keep last value for duplicate key](https://github.com/open-telemetry/opentelemetry-erlang/pull/346)
17+
- [add report_cb to format log messages in composite propagator to have more
18+
detailed logs](https://github.com/open-telemetry/opentelemetry-erlang/pull/355)
19+
- [Fix use of wrong timestamp format on events](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)
20+
21+
#### Fixed
22+
23+
### [SDK]
24+
25+
- [Fix use of wrong timestamp format on events](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)
26+
27+
### [Exporter]
28+
29+
#### Fixed
30+
31+
- [use the default port of the scheme (http/https) instead of default OTLP
32+
port](https://github.com/open-telemetry/opentelemetry-erlang/pull/354)
33+
1034
## 1.0.0 - 2022-01-03
1135

1236
### [SDK]

apps/opentelemetry/rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
{erl_opts, [debug_info]}.
2-
{deps, [{opentelemetry_api, "~> 1.0.0"}]}.
2+
{deps, [{opentelemetry_api, "~> 1.0"}]}.

apps/opentelemetry_api/src/opentelemetry_api.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_api,
22
[{description, "OpenTelemetry API"},
3-
{vsn, "1.0.0"},
3+
{vsn, "1.0.1"},
44
{registered, []},
55
{applications,
66
[kernel,

apps/opentelemetry_exporter/src/opentelemetry_exporter.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, opentelemetry_exporter,
22
[{description, "OpenTelemetry Protocol Exporter"},
3-
{vsn, "1.0.0"},
3+
{vsn, "1.0.1"},
44
{registered, []},
55
{applications,
66
[kernel,

docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
rebar3 compile
1111
rebar3 edoc
12-
version=1.0.0
12+
version=1.0.1
1313

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

0 commit comments

Comments
 (0)