Skip to content

Commit 794c51b

Browse files
Update version to 1.27.0.dev/0.48b0.dev (open-telemetry#4075)
* Update version to 1.27.0.dev/0.48b0.dev * Update SHA * Update missing versions * Update SHA * Update SHA * Update SHA --------- Co-authored-by: Diego Hurtado <[email protected]>
1 parent 3f95781 commit 794c51b

File tree

33 files changed

+59
-40
lines changed

33 files changed

+59
-40
lines changed

.github/workflows/lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ on:
55
branches-ignore:
66
- 'release/*'
77
pull_request:
8+
env:
9+
# Set variable to 'main' if your change will not affect Contrib.
10+
# Otherwise, set variable to the commit of your branch on
11+
# opentelemetry-python-contrib which is compatible with these Core repo
12+
# changes.
13+
CONTRIB_REPO_SHA: 06021a6d1557f79cc292784eff24c718e54f09fb
14+
15+
# This is needed because we do not clone the core repo in contrib builds anymore.
16+
# When running contrib builds as part of core builds, we use actions/checkout@v4 which
17+
# does not set an environment variable (simply just runs tox), which is different when
18+
# contrib builds are run directly from contrib (since test.yml is executed, which sets CORE_REPO_SHA)
19+
# The solution is to include CORE_REPO_SHA as part of THIS environment so it can be accessed
20+
# from within the contrib build.
21+
CORE_REPO_SHA: ${{ github.sha }}
22+
23+
# See #3879 and https://pip.pypa.io/en/stable/cli/pip/#exists-action-option
24+
PIP_EXISTS_ACTION: w
825

926
jobs:
1027
lint-3_12:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
# Otherwise, set variable to the commit of your branch on
1111
# opentelemetry-python-contrib which is compatible with these Core repo
1212
# changes.
13-
CONTRIB_REPO_SHA: main
13+
CONTRIB_REPO_SHA: 06021a6d1557f79cc292784eff24c718e54f09fb
1414

1515
# This is needed because we do not clone the core repo in contrib builds anymore.
1616
# When running contrib builds as part of core builds, we use actions/checkout@v4 which

CHANGELOG.md

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

88
## Unreleased
99

10+
## Version 1.26.0/0.47b0 (2024-07-23)
11+
1012
- Standardizing timeout calculation in measurement consumer collect to nanoseconds
1113
([#4074](https://github.com/open-telemetry/opentelemetry-python/pull/4074))
1214
- optional scope attributes for logger creation

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sortfirst=
1111
exporter/*
1212

1313
[stable]
14-
version=1.26.0.dev
14+
version=1.27.0.dev
1515

1616
packages=
1717
opentelemetry-sdk
@@ -27,7 +27,7 @@ packages=
2727
opentelemetry-api
2828

2929
[prerelease]
30-
version=0.47b0.dev
30+
version=0.48b0.dev
3131

3232
packages=
3333
opentelemetry-opentracing-shim

exporter/opentelemetry-exporter-opencensus/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
dependencies = [
3131
"grpcio >= 1.0.0, < 2.0.0",
3232
"opencensus-proto >= 0.1.0, < 1.0.0",
33-
"opentelemetry-api >= 1.26.0.dev",
33+
"opentelemetry-api >= 1.27.0.dev",
3434
"opentelemetry-sdk >= 1.15",
3535
"protobuf ~= 3.13",
3636
"setuptools >= 16.0",

exporter/opentelemetry-exporter-opencensus/src/opentelemetry/exporter/opencensus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.47b0.dev"
15+
__version__ = "0.48b0.dev"

exporter/opentelemetry-exporter-otlp-proto-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.12",
2828
]
2929
dependencies = [
30-
"opentelemetry-proto == 1.26.0.dev",
30+
"opentelemetry-proto == 1.27.0.dev",
3131
]
3232

3333
[project.urls]

exporter/opentelemetry-exporter-otlp-proto-common/src/opentelemetry/exporter/otlp/proto/common/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.26.0.dev"
15+
__version__ = "1.27.0.dev"

exporter/opentelemetry-exporter-otlp-proto-grpc/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ dependencies = [
3131
"googleapis-common-protos ~= 1.52",
3232
"grpcio >= 1.0.0, < 2.0.0",
3333
"opentelemetry-api ~= 1.15",
34-
"opentelemetry-proto == 1.26.0.dev",
35-
"opentelemetry-sdk ~= 1.26.0.dev",
36-
"opentelemetry-exporter-otlp-proto-common == 1.26.0.dev",
34+
"opentelemetry-proto == 1.27.0.dev",
35+
"opentelemetry-sdk ~= 1.27.0.dev",
36+
"opentelemetry-exporter-otlp-proto-common == 1.27.0.dev",
3737
]
3838

3939
[project.entry-points.opentelemetry_logs_exporter]

exporter/opentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.26.0.dev"
15+
__version__ = "1.27.0.dev"

0 commit comments

Comments
 (0)