Skip to content

Commit 4bd64c9

Browse files
authored
[RELEASE] Prepare release 1.13.0 (#2432)
1 parent 9f6d145 commit 4bd64c9

File tree

5 files changed

+53
-8
lines changed

5 files changed

+53
-8
lines changed

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,67 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.13.0] 2023-12-06
19+
1820
* [BUILD] Remove WITH_REMOVE_METER_PREVIEW, use WITH_ABI_VERSION_2 instead
1921
[#2370](https://github.com/open-telemetry/opentelemetry-cpp/pull/2370)
22+
* [SDK] Metrics ObservableRegistry Cleanup
23+
[#2376](https://github.com/open-telemetry/opentelemetry-cpp/pull/2376)
2024
* [BUILD] Make WITH_OTLP_HTTP_SSL_PREVIEW mainstream
2125
[#2378](https://github.com/open-telemetry/opentelemetry-cpp/pull/2378)
26+
* [SDK] Creating DoubleUpDownCounter with no matching view
27+
[#2379](https://github.com/open-telemetry/opentelemetry-cpp/pull/2379)
2228
* [API] Add InstrumentationScope attributes in TracerProvider::GetTracer()
2329
[#2371](https://github.com/open-telemetry/opentelemetry-cpp/pull/2371)
30+
* [BUILD] DLL export interface for Metrics
31+
[#2344](https://github.com/open-telemetry/opentelemetry-cpp/pull/2344)
2432
* [BUILD] enum CanonicalCode names too generic... conflict with old C defines
2533
[#2385](https://github.com/open-telemetry/opentelemetry-cpp/pull/2385)
34+
* [BUILD] Fix cpack broken package version
35+
[#2386](https://github.com/open-telemetry/opentelemetry-cpp/pull/2386)
2636
* [API] Add a new AddLink() operation to Span
2737
[#2380](https://github.com/open-telemetry/opentelemetry-cpp/pull/2380)
38+
* [opentracing-shim] Add check for sampled context
39+
[#2390](https://github.com/open-telemetry/opentelemetry-cpp/pull/2390)
40+
* [BUILD] Fix exported definitions when building DLL with STL
41+
[#2387](https://github.com/open-telemetry/opentelemetry-cpp/pull/2387)
42+
* [BUILD] Add missing includes to runtime_context_test
43+
[#2395](https://github.com/open-telemetry/opentelemetry-cpp/pull/2395)
44+
* [ADMIN] Add file .github/repository-settings.md
45+
[#2392](https://github.com/open-telemetry/opentelemetry-cpp/pull/2392)
2846
* [SDK] Fix GetLogger with empty library name
2947
[#2398](https://github.com/open-telemetry/opentelemetry-cpp/pull/2398)
48+
* [TEST] Fix compiling problem and removed -DENABLE_TEST
49+
[#2401](https://github.com/open-telemetry/opentelemetry-cpp/pull/2401)
50+
* [BUILD] Check windows options are not passed to non-Windows build
51+
[#2399](https://github.com/open-telemetry/opentelemetry-cpp/pull/2399)
3052
* [EXPORTER] Rework OTLP/HTTP and OTLP/GRPC exporter options
3153
[#2388](https://github.com/open-telemetry/opentelemetry-cpp/pull/2388)
54+
* [Build] Update vcpkg to latest release
55+
[#2412](https://github.com/open-telemetry/opentelemetry-cpp/pull/2412)
56+
* [SDK] Cardinality limits for metrics streams
57+
(Sync Instruments + Delta Temporality)
58+
[#2255](https://github.com/open-telemetry/opentelemetry-cpp/pull/2255)
59+
* [EXPORTER] Prometheus: Add unit to names, convert to word
60+
[#2213](https://github.com/open-telemetry/opentelemetry-cpp/pull/2213)
61+
* [Metrics] Make context optional for histogram instruments in Metrics SDK
62+
[#2416](https://github.com/open-telemetry/opentelemetry-cpp/pull/2416)
63+
* [BUILD] Fix references to trace namespace to be fully qualified
64+
[#2422](https://github.com/open-telemetry/opentelemetry-cpp/pull/2422)
65+
* [BUILD] Bump third_party/googletest to same version as bazel
66+
[#2421](https://github.com/open-telemetry/opentelemetry-cpp/pull/2421)
67+
* [BUILD] Remove defining NOMINMAX from api
68+
[#2420](https://github.com/open-telemetry/opentelemetry-cpp/pull/2420)
69+
* [BUILD] 'uint8_t' not declared in this scope with gcc 13.2.1
70+
[#2423](https://github.com/open-telemetry/opentelemetry-cpp/pull/2423)
71+
* [BUILD] Improve the handling of OPENTELEMETRY_HAVE_WORKING_REGEX
72+
[#2430](https://github.com/open-telemetry/opentelemetry-cpp/pull/2430)
3273
* [SEMANTIC CONVENTION] Upgrade to semconv 1.23.1
3374
[#2428](https://github.com/open-telemetry/opentelemetry-cpp/pull/2428)
75+
* [BUILD] Use fully qualified references to trace/common namespace
76+
[#2424](https://github.com/open-telemetry/opentelemetry-cpp/pull/2424)
77+
* [API] Create root span with active span
78+
[#2427](https://github.com/open-telemetry/opentelemetry-cpp/pull/2427)
3479
* [REMOVAL] Remove ZPAGES
3580
[#2433](https://github.com/open-telemetry/opentelemetry-cpp/pull/2433)
3681

api/include/opentelemetry/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
# define OPENTELEMETRY_ABI_VERSION_NO 1
1111
#endif
1212

13-
#define OPENTELEMETRY_VERSION "1.12.0"
13+
#define OPENTELEMETRY_VERSION "1.13.0"
1414
#define OPENTELEMETRY_VERSION_MAJOR 1
15-
#define OPENTELEMETRY_VERSION_MINOR 12
15+
#define OPENTELEMETRY_VERSION_MINOR 13
1616
#define OPENTELEMETRY_VERSION_PATCH 0
1717

1818
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)

docs/public/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = 'OpenTelemetry authors'
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = "1.12.0"
27+
release = "1.13.0"
2828

2929
# Run sphinx on subprojects and copy output
3030
# -----------------------------------------

sdk/include/opentelemetry/sdk/version/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "opentelemetry/detail/preprocessor.h"
77

8-
#define OPENTELEMETRY_SDK_VERSION "1.12.0"
8+
#define OPENTELEMETRY_SDK_VERSION "1.13.0"
99

1010
#include "opentelemetry/version.h"
1111

sdk/src/version/version.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ namespace sdk
1212
namespace version
1313
{
1414
const int major_version = 1;
15-
const int minor_version = 12;
15+
const int minor_version = 13;
1616
const int patch_version = 0;
1717
const char *pre_release = "NONE";
1818
const char *build_metadata = "NONE";
19-
const char *short_version = "1.12.0";
20-
const char *full_version = "1.12.0-NONE-NONE";
21-
const char *build_date = "Mon 16 Oct 2023 07:42:23 AM UTC";
19+
const char *short_version = "1.13.0";
20+
const char *full_version = "1.13.0-NONE-NONE";
21+
const char *build_date = "Wed Dec 6 00:27:20 UTC 2023";
2222

2323
} // namespace version
2424
} // namespace sdk

0 commit comments

Comments
 (0)