diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml index 9e9eda5..1ca6ab4 100644 --- a/.github/.OwlBot.lock.yaml +++ b/.github/.OwlBot.lock.yaml @@ -1,3 +1,3 @@ docker: - image: gcr.io/repo-automation-bots/owlbot-python:latest - digest: sha256:5de5d966039e98922fa7ea4d28d0cd80a9ee7344003af819c868dd4520629d75 + image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest + digest: sha256:17723e4df0cdd8d4508547ee517df2287af52c9d3f26a91e897bc618f73ec293 diff --git a/.github/.OwlBot.yaml b/.github/.OwlBot.yaml index 318c025..ecabc81 100644 --- a/.github/.OwlBot.yaml +++ b/.github/.OwlBot.yaml @@ -12,7 +12,7 @@ # limitations under the License. docker: - image: gcr.io/repo-automation-bots/owlbot-python:latest + image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest deep-remove-regex: - /owl-bot-staging diff --git a/.repo-metadata.json b/.repo-metadata.json index 9c2bdf6..9459138 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -4,7 +4,7 @@ "product_documentation": "https://cloud.google.com/iam/docs/audit-logging", "client_documentation": "https://googleapis.dev/python/iamlogging/latest", "issue_tracker": "https://github.com/googleapis/python-iamlogging/issues", - "release_level": "beta", + "release_level": "ga", "language": "python", "library_type": "OTHER", "repo": "googleapis/python-iam-logging", diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c61b97..9a75cef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.0](https://www.github.com/googleapis/python-iam-logging/compare/v0.2.0...v1.0.0) (2021-10-25) + + +### Features + +* bump release level to production/stable ([#43](https://www.github.com/googleapis/python-iam-logging/issues/43)) ([dd95b8d](https://www.github.com/googleapis/python-iam-logging/commit/dd95b8dc8f70955697e2424a548f21b7902b0a46)) + ## [0.2.0](https://www.github.com/googleapis/python-iam-logging/compare/v0.1.3...v0.2.0) (2021-10-13) diff --git a/README.rst b/README.rst index bc8b8e7..9331f7c 100644 --- a/README.rst +++ b/README.rst @@ -1,15 +1,15 @@ Python Client for Google Cloud IAM Logging ======================================================= -|beta| |pypi| |versions| +|ga| |pypi| |versions| This package contains generated Python types for ``google.iam.v1.logging``. - `Client Library Documentation`_ - `Product Documentation`_ -.. |beta| image:: https://img.shields.io/badge/support-beta-orange.svg - :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#beta-support +.. |ga| image:: https://img.shields.io/badge/support-ga-gold.svg + :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#ga-support .. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-iam-logging.svg :target: https://pypi.org/project/google-cloud-iam-logging/ .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-iam-logging.svg diff --git a/docs/index.rst b/docs/index.rst index 08e5915..e7e3913 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -18,6 +18,6 @@ Changelog For a list of all ``google-cloud-iam-logging`` releases: .. toctree:: - :maxdepth: 2 + :maxdepth: 2 - changelog + changelog diff --git a/owlbot.py b/owlbot.py deleted file mode 100644 index cd6b3dd..0000000 --- a/owlbot.py +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -"""This script is used to synthesize generated parts of this library.""" - -import os -import synthtool as s -import synthtool.gcp as gcp -from synthtool.languages import python - -common = gcp.CommonTemplates() - -default_version = "v1" - -for library in s.get_staging_dirs(default_version): - s.move(library, excludes=["setup.py", "README.rst", "docs/index.rst"]) - -s.remove_staging_dirs() - -templated_files = common.py_library(microgenerator=True) - -excludes=[".coveragerc"] -s.move(templated_files, excludes=excludes) - -s.shell.run(["nox", "-s", "blacken"], hide_output=False) - diff --git a/setup.py b/setup.py index d015d0f..16ce493 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import os import setuptools # type: ignore -version = "0.2.0" +version = "1.0.0" package_root = os.path.abspath(os.path.dirname(__file__)) @@ -48,7 +48,7 @@ ), python_requires=">=3.6", classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6",