diff --git a/contrib/opencensus-ext-django/CHANGELOG.md b/contrib/opencensus-ext-django/CHANGELOG.md index 45b15514f..54ff9668e 100644 --- a/contrib/opencensus-ext-django/CHANGELOG.md +++ b/contrib/opencensus-ext-django/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +## 0.8.0 +Released 2022-10-17 + - Fixed support for Django 4.1 - ([#1159](https://github.com/census-instrumentation/opencensus-python/pull/1159)) diff --git a/contrib/opencensus-ext-django/setup.py b/contrib/opencensus-ext-django/setup.py index 9aa301e8b..1978d18bb 100644 --- a/contrib/opencensus-ext-django/setup.py +++ b/contrib/opencensus-ext-django/setup.py @@ -46,7 +46,7 @@ long_description=open('README.rst').read(), install_requires=[ 'Django >= 1.11', - 'opencensus >= 0.9.dev0, < 1.0.0', + 'opencensus >= 0.9.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-django/version.py b/contrib/opencensus-ext-django/version.py index dffc606db..66c8da578 100644 --- a/contrib/opencensus-ext-django/version.py +++ b/contrib/opencensus-ext-django/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.8.dev0' +__version__ = '0.8.0'