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

Commit d077698

Browse files
committed
chore: release candidate 1.23.0rc2
1 parent 687dd15 commit d077698

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.23.0](https://github.com/googleapis/proto-plus-python/compare/v1.22.3...v1.23.0) (2023-12-01)
3+
## [1.23.0rc2](https://github.com/googleapis/proto-plus-python/compare/v1.22.3...v1.23.0rc2) (2023-12-01)
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.23.0"
15+
__version__ = "1.23.0rc2"

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)