Skip to content

Commit 6767f26

Browse files
authored
Clean up after 0.10.0 release (opensearch-project#184)
* Clean up after 0.10.0 release Signed-off-by: Karen Xu <karenxyr@gmail.com> * update pywheel version Signed-off-by: Karen Xu <karenxyr@gmail.com> --------- Signed-off-by: Karen Xu <karenxyr@gmail.com>
1 parent 1f3be20 commit 6767f26

5 files changed

Lines changed: 22 additions & 10 deletions

File tree

BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ genrule(
107107
for pb in document_service search_service; do
108108
cp $(BINDIR)/protos/services/$${pb}_python_proto_pb/protos/services/$${pb}_pb2.py $(RULEDIR)/opensearch/protobufs/services/
109109
cp $(BINDIR)/protos/services/$${pb}_python_proto_pb/protos/services/$${pb}_pb2_grpc.py $(RULEDIR)/opensearch/protobufs/services/
110-
110+
111111
# Fix imports in both pb2 and pb2_grpc files
112112
sed -i \
113113
-e 's/from protos\\.schemas import/from opensearch.protobufs.schemas import/g' \
@@ -137,7 +137,7 @@ py_wheel(
137137
name = "opensearch_protos_wheel",
138138
distribution = "opensearch-protobufs",
139139
python_tag = "py3",
140-
version = "0.10.0",
140+
version = "0.11.0",
141141
requires = [
142142
"protobuf>=3.20.3",
143143
"grpcio>=1.68.1",
@@ -161,4 +161,4 @@ py_wheel(
161161
":fixed_schemas",
162162
":fixed_services",
163163
],
164-
)
164+
)

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
77
- Publish opensearch-protos python package to PyPi. ([#183](https://github.com/opensearch-project/opensearch-protobufs/pull/183))
88

99
### Changed
10-
- update `score` type. ([#176](https://github.com/opensearch-project/opensearch-protobufs/pull/176))
11-
- Replace `underscore_` prefix with `x_` ([#177](https://github.com/opensearch-project/opensearch-protobufs/pull/177))
1210
- update `score` protobuf type ([#179](https://github.com/opensearch-project/opensearch-protobufs/pull/179))
11+
1312
### Removed
1413

1514
### Fixed

RELEASING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
**DO NOT cut a tag by going to release section of Github UI. It will mess up the Github Action.**
44

55
Note: A maintainer must remember to perform steps 1, 2 and 4.
6-
1. Run these commands from the upstream opensearch-protobufs repository, not a forked one.
7-
Check that upstream is set to:
6+
1. Run these commands from the upstream opensearch-protobufs repository, not a forked one.
7+
Check that upstream is set to:
88
```
99
~/opensearch-protobufs on [main] % git remote -v
1010
upstream git@github.com:opensearch-project/opensearch-protobufs.git (fetch)
@@ -16,8 +16,8 @@ git checkout main
1616
git fetch upstream
1717
git rebase upstream/main
1818
git tag <version>
19-
git push upstream <version>
19+
git push upstream <version>
2020
```
2121
2. Wait for Github Actions to run and open the newly created issue. Two maintainers should comment `approve` in the issue.
2222
3. Wait for Jenkins to be triggered, pull the artifacts built by Actions, push to sonatype release channel on remote. Wait for an hour or so for Sonatype to copy it into Maven Central.
23-
4. Bump [version.properties](./version.properties) as well as the py_wheel `version` property in the top level BUILD.bazel, update [release-notes](./release-notes/), and clean up entries from [CHANGELOG.md](./CHANGELOG.md) via a PR.
23+
4. Bump [version.properties](./version.properties) as well as the py_wheel `version` property in the top level [BUILD.bazel](./BUILD.bazel), update [release-notes](./release-notes/), and clean up entries from [CHANGELOG.md](./CHANGELOG.md) via a PR.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Version 0.10.0 (2025-08-13) Release Notes
2+
3+
### Added
4+
5+
### Changed
6+
- update `score` type. ([#176](https://github.com/opensearch-project/opensearch-protobufs/pull/176))
7+
- Replace `underscore_` prefix with `x_` ([#177](https://github.com/opensearch-project/opensearch-protobufs/pull/177))
8+
9+
### Removed
10+
11+
### Fixed
12+
13+
### Security

version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.10.0
1+
version=0.11.0

0 commit comments

Comments
 (0)