Skip to content

Commit 08c122b

Browse files
committed
chore: release candidate 0.35.0rc1
1 parent edd59e3 commit 08c122b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[1]: https://pypi.org/project/google-cloud-dns/#history
66

7-
## [0.35.0](https://github.com/googleapis/python-dns/compare/v0.34.2...v0.35.0) (2023-11-30)
7+
## [0.35.0rc1](https://github.com/googleapis/python-dns/compare/v0.34.2...v0.35.0rc1) (2023-11-30)
88

99

1010
### Features

google/cloud/dns/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.35.0"
16+
__version__ = "0.35.0rc1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
version = None
3030

3131
with open(os.path.join(package_root, "google/cloud/dns/version.py")) as fp:
32-
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read())
32+
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+rc\d+", fp.read())
3333
assert len(version_candidates) == 1
3434
version = version_candidates[0]
3535

0 commit comments

Comments
 (0)