Skip to content

Commit

Permalink
Release/v0.11.x (#1147)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzchen authored Aug 3, 2022
1 parent 9880318 commit 6e83e88
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 10 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@

## Unreleased

# 0.11.0
Released 2022-08-03

- Updated `azure`, `context`, `flask`, `requests` modules

# 0.10.0
Released 2022-07-05

- Add kwargs to derived gauge
([#1135](https://github.com/census-instrumentation/opencensus-python/pull/1135))

# 0.9.0
Released 2022-04-20
- Make sure handler.flush() doesn't deadlock.

- Make sure handler.flush() doesn't deadlock
([#1112](https://github.com/census-instrumentation/opencensus-python/pull/1112))

# 0.8.0
Expand Down
3 changes: 3 additions & 0 deletions context/opencensus-context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.1.3
Released 2022-08-03

- Move `version.py` file into `runtime_context` folder
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.2.dev0'
__version__ = '0.1.3'
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-azure/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 1.1.6
Released 2022-08-03

- Add statusCode and exceptionType to network statsbeat
([#1138](https://github.com/census-instrumentation/opencensus-python/pull/1138))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '1.2.dev0'
__version__ = '1.1.6'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-azure/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.dev0, < 1.0.0',
'opencensus >= 0.11.0, < 1.0.0',
'psutil >= 5.6.3',
'requests >= 2.19.0',
],
Expand Down
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-flask/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.8.1
Released 2022-08-03

- Move `version.py` file into `common` folder
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.9.dev0'
__version__ = '0.8.1'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-flask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
long_description=open('README.rst').read(),
install_requires=[
'flask >= 0.12.3, < 3.0.0, != 1.1.3',
'opencensus >= 0.9.dev0, < 1.0.0',
'opencensus >= 0.11.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-requests/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.8.0
Released 2022-08-03

- Move `version.py` file into `common` folder
([#1143](https://github.com/census-instrumentation/opencensus-python/pull/1143))
- Add `requests` library as a hard dependency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-requests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.9.dev0, < 1.0.0',
'opencensus >= 0.11.0, < 1.0.0',
'requests >= 2.19.0, < 3.0.0',
'wrapt >= 1.0.0, < 2.0.0',
],
Expand Down
2 changes: 1 addition & 1 deletion opencensus/common/version/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.11.dev0'
__version__ = '0.11.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
],
Expand Down

0 comments on commit 6e83e88

Please sign in to comment.