Skip to content

Commit

Permalink
chore: release candidate 1.25.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Oct 15, 2024
1 parent 07dcdbf commit 86bb7d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

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


### Features
Expand Down
2 changes: 1 addition & 1 deletion proto/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.25.0"
__version__ = "1.25.0rc0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
version = None

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

Expand Down

0 comments on commit 86bb7d2

Please sign in to comment.