Skip to content

Commit 49ef9dc

Browse files
authored
Post-release opencensus v0.11.0 (census-instrumentation#1149)
1 parent 9880318 commit 49ef9dc

File tree

10 files changed

+25
-6
lines changed

10 files changed

+25
-6
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@
22

33
## Unreleased
44

5+
# 0.11.0
6+
Released 2022-08-03
7+
8+
- Updated `azure`, `context`, `flask`, `requests` modules
9+
510
# 0.10.0
611
Released 2022-07-05
12+
713
- Add kwargs to derived gauge
814
([#1135](https://github.com/census-instrumentation/opencensus-python/pull/1135))
915

1016
# 0.9.0
1117
Released 2022-04-20
12-
- Make sure handler.flush() doesn't deadlock.
18+
19+
- Make sure handler.flush() doesn't deadlock
1320
([#1112](https://github.com/census-instrumentation/opencensus-python/pull/1112))
1421

1522
# 0.8.0

context/opencensus-context/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 0.1.3
6+
Released 2022-08-03
7+
58
- Move `version.py` file into `runtime_context` folder
69
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))
710

contrib/opencensus-ext-azure/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 1.1.6
6+
Released 2022-08-03
7+
58
- Add statusCode and exceptionType to network statsbeat
69
([#1138](https://github.com/census-instrumentation/opencensus-python/pull/1138))
710

contrib/opencensus-ext-azure/setup.py

+1-1
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.11.dev0, < 1.0.0',
46+
'opencensus >= 0.12.dev0, < 1.0.0',
4747
'psutil >= 5.6.3',
4848
'requests >= 2.19.0',
4949
],

contrib/opencensus-ext-flask/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 0.8.1
6+
Released 2022-08-03
7+
58
- Move `version.py` file into `common` folder
69
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))
710

contrib/opencensus-ext-flask/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
long_description=open('README.rst').read(),
5151
install_requires=[
5252
'flask >= 0.12.3, < 3.0.0, != 1.1.3',
53-
'opencensus >= 0.9.dev0, < 1.0.0',
53+
'opencensus >= 0.12.dev0, < 1.0.0',
5454
],
5555
extras_require={},
5656
license='Apache-2.0',

contrib/opencensus-ext-requests/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 0.8.0
6+
Released 2022-08-03
7+
58
- Move `version.py` file into `common` folder
69
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))
710
- Add `requests` library as a hard dependency

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

+1-1
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.9.dev0'

contrib/opencensus-ext-requests/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
include_package_data=True,
5050
long_description=open('README.rst').read(),
5151
install_requires=[
52-
'opencensus >= 0.9.dev0, < 1.0.0',
52+
'opencensus >= 0.12.dev0, < 1.0.0',
5353
'requests >= 2.19.0, < 3.0.0',
5454
'wrapt >= 1.0.0, < 2.0.0',
5555
],

opencensus/common/version/__init__.py

+1-1
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.11.dev0'
15+
__version__ = '0.12.dev0'

0 commit comments

Comments
 (0)