Skip to content

Commit 7539c71

Browse files
authored
Merge branch 'main' into add_otlp_endpoint
2 parents b1084ac + 1b76dd2 commit 7539c71

File tree

14 files changed

+34
-27
lines changed

14 files changed

+34
-27
lines changed

docs/releasing.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,8 @@ with:
8989
**pointing at the first commit (a)** that was merged into main. For the
9090
example PR listed above, that creates release
9191
[`v0.11b0@4ad9ccd`](https://github.com/GoogleCloudPlatform/opentelemetry-operations-python/releases/tag/v0.11b0).
92-
- In description, paste a changelog for the packages. I used this (probably
93-
buggy) small script for the example PR's tag:
94-
95-
```bash
96-
for cl in opentelemetry-*/CHANGELOG.md; do
97-
if cl_entries=`pcregrep -M -o1 "^## Version 0\.10b0$\n\n^Released.*\n\n((?:- [\s\S]+?)*?)(?=(\s+##|\Z))" $cl`
98-
then
99-
echo -e "# `dirname $cl`\n$cl_entries"
100-
fi
101-
done
102-
```
92+
93+
Click the "Generate release notes" button in the UI to get an autogenerated changelog for the packages.
10394

10495
Once the release tag is created, move the `stable` tag to point to the same
10596
commit.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## Version 1.9.0a0
6+
7+
Released 2025-02-03

opentelemetry-exporter-gcp-logging/README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Usage
3535
-----
3636

3737
.. code:: python
38+
3839
import logging
3940
from opentelemetry.exporter.cloud_logging import (
4041
CloudLoggingExporter,

opentelemetry-exporter-gcp-logging/src/opentelemetry/exporter/cloud_logging/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.9.0.dev0"
15+
__version__ = "1.10.0.dev0"

opentelemetry-exporter-gcp-monitoring/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## Version 1.9.0a0
6+
7+
Released 2025-02-03
8+
59
## Version 1.8.0a0
610

711
Released 2025-01-08

opentelemetry-exporter-gcp-monitoring/src/opentelemetry/exporter/cloud_monitoring/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.9.0.dev0"
15+
__version__ = "1.10.0.dev0"

opentelemetry-exporter-gcp-trace/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## Version 1.9.0
6+
7+
Released 2025-02-03
8+
59
## Version 1.8.0
610

711
Released 2025-01-08

opentelemetry-exporter-gcp-trace/src/opentelemetry/exporter/cloud_trace/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.9.0.dev0"
15+
__version__ = "1.10.0.dev0"

opentelemetry-propagator-gcp/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## Version 1.9.0
6+
7+
Released 2025-02-03
8+
59
## Version 1.8.0
610

711
Released 2025-01-08

opentelemetry-propagator-gcp/src/opentelemetry/propagators/cloud_trace_propagator/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.9.0.dev0"
15+
__version__ = "1.10.0.dev0"

0 commit comments

Comments
 (0)