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

version bumps for api and sdk #783

Merged
merged 3 commits into from
Oct 3, 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
2 changes: 1 addition & 1 deletion apps/opentelemetry/rebar.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{erl_opts, [debug_info]}.
{deps, [{opentelemetry_api, "~> 1.3.0"}]}.
{deps, [{opentelemetry_api, "~> 1.3"}]}.

{profiles,
[{docs, [{edoc_opts,
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.0"},
{vsn, "1.4.1"},
{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.1"},
{vsn, "1.3.2"},
{registered, []},
{applications,
[kernel,
Expand Down
4 changes: 2 additions & 2 deletions docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ set -e

rebar3 compile
rebar3 edoc
sdk_version=1.4.0
api_version=1.3.1
sdk_version=1.4.1
api_version=1.3.2
exp_sdk_version=0.5.1
exp_api_version=0.5.1
otlp_version=1.7.0
Expand Down
Loading