diff --git a/CHANGELOG.md b/CHANGELOG.md index d614b5618..302600d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +# 0.11.4 +Released 2024-01-03 + - Changed bit-mapping for `httpx` and `fastapi` integrations ([#1239](https://github.com/census-instrumentation/opencensus-python/pull/1239)) diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index d9c1bc174..f42eb7519 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased +## 1.1.13 + +Released 2024-01-03 + +- Changed bit-mapping for `httpx` and `fastapi` integrations +([#1239](https://github.com/census-instrumentation/opencensus-python/pull/1239)) + ## 1.1.12 Released 2023-11-28 diff --git a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py index 8221abf1e..a39f66a0b 100644 --- a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py +++ b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '1.1.12' +__version__ = '1.1.13' diff --git a/contrib/opencensus-ext-azure/setup.py b/contrib/opencensus-ext-azure/setup.py index 98174a585..422effebc 100644 --- a/contrib/opencensus-ext-azure/setup.py +++ b/contrib/opencensus-ext-azure/setup.py @@ -43,7 +43,7 @@ install_requires=[ 'azure-core >= 1.12.0, < 2.0.0', 'azure-identity >= 1.5.0, < 2.0.0', - 'opencensus >= 0.11.3, < 1.0.0', + 'opencensus >= 0.11.4, < 1.0.0', 'psutil >= 5.6.3', 'requests >= 2.19.0', ], diff --git a/opencensus/common/version/__init__.py b/opencensus/common/version/__init__.py index ebf29a38b..3e556a02d 100644 --- a/opencensus/common/version/__init__.py +++ b/opencensus/common/version/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.12.dev0' +__version__ = '0.11.4' diff --git a/setup.py b/setup.py index ae24e21bd..9215b1388 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus-context >= 0.2.dev0', + 'opencensus-context >= 0.1.3', 'google-api-core >= 1.0.0, < 2.0.0; python_version<"3.6"', 'google-api-core >= 1.0.0, < 3.0.0; python_version>="3.6"', "six ~= 1.16",