Skip to content

Commit

Permalink
chore: release candidate v1.24.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Jun 4, 2024
1 parent 4b60b32 commit 4acfd21
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.24.0](https://github.com/googleapis/proto-plus-python/compare/v1.23.0...v1.24.0) (2024-06-04)
## [1.24.0rc2](https://github.com/googleapis/proto-plus-python/compare/v1.23.0...v1.24.0rc2) (2024-06-04)


### 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.24.0"
__version__ = "1.24.0rc2"
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 4acfd21

Please sign in to comment.