Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit 79b5021

Browse files
authored
release (#1121)
1 parent 4a9ff9c commit 79b5021

File tree

9 files changed

+17
-6
lines changed

9 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
# 0.9.0
6+
Released 2022-04-20
7+
- Make sure handler.flush() doesn't deadlock.
8+
([#1112](https://github.com/census-instrumentation/opencensus-python/pull/1112))
9+
510
# 0.8.0
611
Released 2021-10-05
712

contrib/opencensus-ext-azure/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 1.1.4
6+
Released 2022-04-20
7+
58
- Statsbeat bug fixes - status codes
69
([#1113](https://github.com/census-instrumentation/opencensus-python/pull/1113))
710
- Statsbeat bug fixes - do not log if statsbeat

contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '1.2.dev0'
15+
__version__ = '1.1.4'

contrib/opencensus-ext-azure/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
install_requires=[
4444
'azure-core >= 1.12.0, < 2.0.0',
4545
'azure-identity >= 1.5.0, < 2.0.0',
46-
'opencensus >= 0.9.dev0, < 1.0.0',
46+
'opencensus >= 0.8.0, < 1.0.0',
4747
'psutil >= 5.6.3',
4848
'requests >= 2.19.0',
4949
],

contrib/opencensus-ext-flask/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 0.8.0
6+
Released 2022-04-20
7+
58
- Add support for Flask 2
69
([#1032](https://github.com/census-instrumentation/opencensus-python/pull/1032))
710

contrib/opencensus-ext-flask/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
long_description=open('README.rst').read(),
4343
install_requires=[
4444
'flask >= 0.12.3, < 3.0.0, != 1.1.3',
45-
'opencensus >= 0.9.dev0, < 1.0.0',
45+
'opencensus >= 0.8.0, < 1.0.0',
4646
],
4747
extras_require={},
4848
license='Apache-2.0',

contrib/opencensus-ext-flask/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '0.8.dev0'
15+
__version__ = '0.8.0'

opencensus/common/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '0.9.dev0'
15+
__version__ = '0.9.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
include_package_data=True,
4343
long_description=open('README.rst').read(),
4444
install_requires=[
45-
'opencensus-context >= 0.2.dev0',
45+
'opencensus-context >= 0.1.2',
4646
'google-api-core >= 1.0.0, < 2.0.0; python_version<"3.6"',
4747
'google-api-core >= 1.0.0, < 3.0.0; python_version>="3.6"',
4848
],

0 commit comments

Comments
 (0)