Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 86bb7d2

Browse files
committed
chore: release candidate 1.25.0rc0
1 parent 07dcdbf commit 86bb7d2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.25.0](https://github.com/googleapis/proto-plus-python/compare/v1.24.0...v1.25.0) (2024-10-15)
3+
## [1.25.0rc0](https://github.com/googleapis/proto-plus-python/compare/v1.24.0...v1.25.0rc0) (2024-10-15)
44

55

66
### Features

proto/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.25.0"
15+
__version__ = "1.25.0rc0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
version = None
2424

2525
with open(os.path.join(PACKAGE_ROOT, "proto/version.py")) as fp:
26-
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read())
26+
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+rc\d+", fp.read())
2727
assert len(version_candidates) == 1
2828
version = version_candidates[0]
2929

0 commit comments

Comments
 (0)