diff --git a/CHANGELOG.md b/CHANGELOG.md index a8b91016..bbdc5f71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.0.6](https://github.com/googleapis/sphinx-docfx-yaml/compare/v2.0.5...v2.0.6) (2023-10-30) + + +### Bug Fixes + +* Refactor type hint retrieval ([#312](https://github.com/googleapis/sphinx-docfx-yaml/issues/312)) ([0c91f60](https://github.com/googleapis/sphinx-docfx-yaml/commit/0c91f60fb2eab8b184b1228d5f3eb133be7ae201)) +* Support docstrings without type added ([#311](https://github.com/googleapis/sphinx-docfx-yaml/issues/311)) ([d214d64](https://github.com/googleapis/sphinx-docfx-yaml/commit/d214d64c54d06fa715535b14932ac1ad67fa0d09)) +* Update annotation name extraction logic and add unit tests ([#320](https://github.com/googleapis/sphinx-docfx-yaml/issues/320)) ([220951d](https://github.com/googleapis/sphinx-docfx-yaml/commit/220951d341c27d345679f64fb67968320168e428)) + ## [2.0.5](https://github.com/googleapis/sphinx-docfx-yaml/compare/v2.0.4...v2.0.5) (2023-06-27) diff --git a/setup.py b/setup.py index fa7106ea..de9c5b08 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ name = 'gcp-sphinx-docfx-yaml' description = 'Sphinx Python Domain to DocFX YAML Generator' -version = '2.0.5' +version = '2.0.6' dependencies = [ 'black', 'gcp-docuploader', diff --git a/tests/testdata/handwritten/google/cloud/storage/version.py b/tests/testdata/handwritten/google/cloud/storage/version.py index 951e99f4..d6925e36 100644 --- a/tests/testdata/handwritten/google/cloud/storage/version.py +++ b/tests/testdata/handwritten/google/cloud/storage/version.py @@ -13,4 +13,4 @@ # limitations under the License. # Original snapshotted version is 2.5.0. -__version__ = "2.0.5" +__version__ = "2.0.6" diff --git a/tests/testdata/non-cloud/pandas_gbq/version.py b/tests/testdata/non-cloud/pandas_gbq/version.py index aa4c894c..12dde207 100644 --- a/tests/testdata/non-cloud/pandas_gbq/version.py +++ b/tests/testdata/non-cloud/pandas_gbq/version.py @@ -3,4 +3,4 @@ # license that can be found in the LICENSE file. # Original snapshotted version is 0.19.1. -__version__ = "2.0.5" +__version__ = "2.0.6"