Skip to content

Commit

Permalink
chore: release candidate 0.35.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Nov 30, 2023
1 parent edd59e3 commit 08c122b
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
Expand Up @@ -4,7 +4,7 @@

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

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


### Features
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/dns/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "0.35.0"
__version__ = "0.35.0rc1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
version = None

with open(os.path.join(package_root, "google/cloud/dns/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 08c122b

Please sign in to comment.