Skip to content

Commit

Permalink
Prepare for 0.6.0 release (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang authored Jun 1, 2019
1 parent 6901d09 commit e1507b2
Show file tree
Hide file tree
Showing 60 changed files with 104 additions and 52 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## Unreleased

## 0.6.0
Released 2019-05-31

- Refactored PeriodicTask
([#632](https://github.com/census-instrumentation/opencensus-python/pull/632))
- Make ProbabilitySampler default, change default sampling rate
Expand Down
5 changes: 5 additions & 0 deletions context/opencensus-context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 0.1.1
Released 2019-05-31

- Updated docs and examples

## 0.1.0
Released 2019-04-08

Expand Down
2 changes: 1 addition & 1 deletion context/opencensus-context/version.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.2.dev0'
__version__ = '0.1.1'
2 changes: 1 addition & 1 deletion contrib/opencensus-correlation/version.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.2.dev0'
__version__ = '0.3.0'
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-azure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## Unreleased

## 0.2.0
Released 2019-05-31
- Added log exporter
([#657](https://github.com/census-instrumentation/opencensus-python/pull/657),
[#668](https://github.com/census-instrumentation/opencensus-python/pull/668))
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.2.0'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-azure/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'requests >= 2.19.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-dbapi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-dbapi/version.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.2.dev0'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-django/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
long_description=open('README.rst').read(),
install_requires=[
'Django >= 1.11.0, <= 1.11.20',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-django/version.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.4.dev0'
__version__ = '0.3.0'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-flask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
long_description=open('README.rst').read(),
install_requires=[
'flask >= 0.12.3, < 2.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-flask/version.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.4.dev0'
__version__ = '0.3.0'
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-gevent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

## Unreleased

## 0.1.0
Released 2019-05-31

- Initial version
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-gevent/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'gevent >= 1.3'
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-gevent/version.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.1.dev0'
__version__ = '0.1.0'
6 changes: 3 additions & 3 deletions contrib/opencensus-ext-google-cloud-clientlibs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus-ext-grpc >= 0.3.dev0, < 1.0.0',
'opencensus-ext-requests >= 0.2.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'opencensus-ext-grpc >= 0.3, < 1.0.0',
'opencensus-ext-requests >= 0.1.2, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-google-cloud-clientlibs/version.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.2.dev0'
__version__ = '0.1.2'
5 changes: 5 additions & 0 deletions contrib/opencensus-ext-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 0.3.0
Released 2019-05-31

- Limit span attachments

## 0.2.0
Released 2019-04-24

Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-grpc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
long_description=open('README.rst').read(),
install_requires=[
'grpcio >= 1.0.0, < 2.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-grpc/version.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.3.dev0'
__version__ = '0.3.0'
5 changes: 5 additions & 0 deletions contrib/opencensus-ext-httplib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 0.1.3
Released 2019-05-31

- Minor improvements

## 0.1.2
Released 2019-04-24

Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-httplib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-httplib/version.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.2.dev0'
__version__ = '0.1.3'
5 changes: 5 additions & 0 deletions contrib/opencensus-ext-jaeger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 0.2.2
Released 2019-05-31

- Minor improvements

## 0.2.1
Released 2019-04-24

Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-jaeger/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'thrift >= 0.10.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-jaeger/version.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.3.dev0'
__version__ = '0.2.2'
4 changes: 4 additions & 0 deletions contrib/opencensus-ext-logging/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog

## Unreleased

## 0.1.0
Released 2019-05-31

- Initial version
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-logging/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-logging/version.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.1.dev0'
__version__ = '0.1.0'
4 changes: 2 additions & 2 deletions contrib/opencensus-ext-mysql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
long_description=open('README.rst').read(),
install_requires=[
'mysql-connector >= 2.1.6, < 3.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'opencensus-ext-dbapi >= 0.1.2, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-mysql/version.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.2.dev0'
__version__ = '0.1.2'
4 changes: 4 additions & 0 deletions contrib/opencensus-ext-ocagent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## Unreleased

## 0.4.0
Released 2019-05-31

- Remove well_known_types.Error and well_known_types.ParseError.
Note this could be a breaking change if you depend on an older
version of protobuf and use ParseError.
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-ocagent/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
long_description=open('README.rst').read(),
install_requires=[
'grpcio >= 1.0.0, < 2.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'opencensus-proto >= 0.1.0, < 1.0.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-ocagent/version.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.4.dev0'
__version__ = '0.4.0'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-postgresql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'psycopg2-binary >= 2.7.3.1',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-postgresql/version.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.2.dev0'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-prometheus/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'prometheus_client >= 0.5.0, < 1.0.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-prometheus/version.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.3.dev0'
__version__ = '0.2.1'
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-pymongo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.1.3
Released 2019-05-31

- Include aggregation pipeline in trace attributes
- Fix support command dictionaries

Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-pymongo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'pymongo >= 3.1.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-pymongo/version.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.2.dev0'
__version__ = '0.1.3'
4 changes: 2 additions & 2 deletions contrib/opencensus-ext-pymysql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
long_description=open('README.rst').read(),
install_requires=[
'PyMySQL >= 0.7.11, < 1.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'opencensus-ext-dbapi >= 0.1.2, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-pymysql/version.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.2.dev0'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-pyramid/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
long_description=open('README.rst').read(),
install_requires=[
'pyramid >= 1.9.1, < 2.0.0',
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
],
extras_require={},
license='Apache-2.0',
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-pyramid/version.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.4.dev0'
__version__ = '0.3.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 @@ -39,7 +39,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'opencensus >= 0.6.dev0, < 1.0.0',
'opencensus >= 0.6.0, < 1.0.0',
'wrapt >= 1.0.0, < 2.0.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-requests/version.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.2.dev0'
__version__ = '0.1.2'
Loading

0 comments on commit e1507b2

Please sign in to comment.