diff --git a/CHANGELOG.md b/CHANGELOG.md index 04601a9ff..4de9c3180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + - Fix exporting int-valued stats with sum and lastvalue aggregations ([#696](https://github.com/census-instrumentation/opencensus-python/pull/696)) - Fix cloud format propagator to use decimal span_id encoding instead of hex ([#719](https://github.com/census-instrumentation/opencensus-python/pull/719)) - ## 0.6.0 Released 2019-05-31 diff --git a/context/opencensus-context/CHANGELOG.md b/context/opencensus-context/CHANGELOG.md index a470e2320..35d70e113 100644 --- a/context/opencensus-context/CHANGELOG.md +++ b/context/opencensus-context/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + ## 0.1.1 Released 2019-05-31 diff --git a/context/opencensus-context/version.py b/context/opencensus-context/version.py index ff18aeb50..b320c6063 100644 --- a/context/opencensus-context/version.py +++ b/context/opencensus-context/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-correlation/CHANGELOG.md b/contrib/opencensus-correlation/CHANGELOG.md index 805c3d79d..1e02c3736 100644 --- a/contrib/opencensus-correlation/CHANGELOG.md +++ b/contrib/opencensus-correlation/CHANGELOG.md @@ -2,4 +2,12 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + +## 0.3.0 +Released 2019-05-31 + - Add this changelog. diff --git a/contrib/opencensus-correlation/version.py b/contrib/opencensus-correlation/version.py index deb2f374d..b320c6063 100644 --- a/contrib/opencensus-correlation/version.py +++ b/contrib/opencensus-correlation/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index 7dd47b3d0..870afd94d 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.0 +Released 2019-07-31 + - Added standard metrics ([#708](https://github.com/census-instrumentation/opencensus-python/pull/708), [#718](https://github.com/census-instrumentation/opencensus-python/pull/718), @@ -11,16 +15,20 @@ ([#735](https://github.com/census-instrumentation/opencensus-python/pull/735)) ## 0.3.1 +Released 2019-06-30 + - Added metrics exporter ([#678](https://github.com/census-instrumentation/opencensus-python/pull/678)) ## 0.2.1 Released 2019-06-13 + - Support span attributes ([#682](https://github.com/census-instrumentation/opencensus-python/pull/682)) ## 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)) diff --git a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py index deb2f374d..b320c6063 100644 --- a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py +++ b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-azure/setup.py b/contrib/opencensus-ext-azure/setup.py index f645174dd..b97e6a4a9 100644 --- a/contrib/opencensus-ext-azure/setup.py +++ b/contrib/opencensus-ext-azure/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'psutil >= 5.6.3', 'requests >= 2.19.0', ], diff --git a/contrib/opencensus-ext-dbapi/CHANGELOG.md b/contrib/opencensus-ext-dbapi/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-dbapi/CHANGELOG.md +++ b/contrib/opencensus-ext-dbapi/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-dbapi/setup.py b/contrib/opencensus-ext-dbapi/setup.py index 1583edbf6..f2375f5f5 100644 --- a/contrib/opencensus-ext-dbapi/setup.py +++ b/contrib/opencensus-ext-dbapi/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-dbapi/version.py b/contrib/opencensus-ext-dbapi/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-dbapi/version.py +++ b/contrib/opencensus-ext-dbapi/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-django/CHANGELOG.md b/contrib/opencensus-ext-django/CHANGELOG.md index ff716cb0d..e783a6b7c 100644 --- a/contrib/opencensus-ext-django/CHANGELOG.md +++ b/contrib/opencensus-ext-django/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.0 +Released 2019-07-31 + - Updated span attributes to include some missing attributes listed [here](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/HTTP.md#attributes) ([#735](https://github.com/census-instrumentation/opencensus-python/pull/735)) diff --git a/contrib/opencensus-ext-django/setup.py b/contrib/opencensus-ext-django/setup.py index 0062f846a..1858eab7f 100644 --- a/contrib/opencensus-ext-django/setup.py +++ b/contrib/opencensus-ext-django/setup.py @@ -44,7 +44,7 @@ long_description=open('README.rst').read(), install_requires=[ 'Django >= 1.11', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.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 deb2f374d..b320c6063 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.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index b10ba830b..f0f06e915 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.0 +Released 2019-07-31 + - Make ProbabilitySampler default - Updated span attributes to include some missing attributes listed [here](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/HTTP.md#attributes) ([#735](https://github.com/census-instrumentation/opencensus-python/pull/735)) diff --git a/contrib/opencensus-ext-flask/setup.py b/contrib/opencensus-ext-flask/setup.py index a1d6db8b1..5a8c2d663 100644 --- a/contrib/opencensus-ext-flask/setup.py +++ b/contrib/opencensus-ext-flask/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'flask >= 0.12.3, < 2.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-flask/version.py b/contrib/opencensus-ext-flask/version.py index deb2f374d..b320c6063 100644 --- a/contrib/opencensus-ext-flask/version.py +++ b/contrib/opencensus-ext-flask/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-gevent/CHANGELOG.md b/contrib/opencensus-ext-gevent/CHANGELOG.md index 23e03050b..f26ea55e9 100644 --- a/contrib/opencensus-ext-gevent/CHANGELOG.md +++ b/contrib/opencensus-ext-gevent/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.0 Released 2019-05-31 diff --git a/contrib/opencensus-ext-gevent/setup.py b/contrib/opencensus-ext-gevent/setup.py index 4109854aa..ae0e6f3af 100644 --- a/contrib/opencensus-ext-gevent/setup.py +++ b/contrib/opencensus-ext-gevent/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'gevent >= 1.3' ], extras_require={}, diff --git a/contrib/opencensus-ext-gevent/version.py b/contrib/opencensus-ext-gevent/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-gevent/version.py +++ b/contrib/opencensus-ext-gevent/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md +++ b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/setup.py b/contrib/opencensus-ext-google-cloud-clientlibs/setup.py index 2dc87bd9e..876254961 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/setup.py +++ b/contrib/opencensus-ext-google-cloud-clientlibs/setup.py @@ -39,9 +39,9 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', - 'opencensus-ext-grpc >= 0.4.dev0, < 1.0.0', - 'opencensus-ext-requests >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', + 'opencensus-ext-grpc >= 0.7.0, < 1.0.0', + 'opencensus-ext-requests >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/version.py b/contrib/opencensus-ext-google-cloud-clientlibs/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/version.py +++ b/contrib/opencensus-ext-google-cloud-clientlibs/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-grpc/CHANGELOG.md b/contrib/opencensus-ext-grpc/CHANGELOG.md index 33aafa3d6..f26ad90b5 100644 --- a/contrib/opencensus-ext-grpc/CHANGELOG.md +++ b/contrib/opencensus-ext-grpc/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.3.0 Released 2019-05-31 diff --git a/contrib/opencensus-ext-grpc/setup.py b/contrib/opencensus-ext-grpc/setup.py index b42e607a4..fd3408377 100644 --- a/contrib/opencensus-ext-grpc/setup.py +++ b/contrib/opencensus-ext-grpc/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'grpcio >= 1.0.0, < 2.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-grpc/version.py b/contrib/opencensus-ext-grpc/version.py index deb2f374d..b320c6063 100644 --- a/contrib/opencensus-ext-grpc/version.py +++ b/contrib/opencensus-ext-grpc/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-httplib/CHANGELOG.md b/contrib/opencensus-ext-httplib/CHANGELOG.md index 3f88b4499..16f499375 100644 --- a/contrib/opencensus-ext-httplib/CHANGELOG.md +++ b/contrib/opencensus-ext-httplib/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.3 Released 2019-05-31 diff --git a/contrib/opencensus-ext-httplib/setup.py b/contrib/opencensus-ext-httplib/setup.py index 7a29e9d24..64b71dd6e 100644 --- a/contrib/opencensus-ext-httplib/setup.py +++ b/contrib/opencensus-ext-httplib/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-httplib/version.py b/contrib/opencensus-ext-httplib/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-httplib/version.py +++ b/contrib/opencensus-ext-httplib/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-jaeger/CHANGELOG.md b/contrib/opencensus-ext-jaeger/CHANGELOG.md index b82a493db..e95de1f0c 100644 --- a/contrib/opencensus-ext-jaeger/CHANGELOG.md +++ b/contrib/opencensus-ext-jaeger/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.2.2 Released 2019-05-31 diff --git a/contrib/opencensus-ext-jaeger/setup.py b/contrib/opencensus-ext-jaeger/setup.py index a46f25a1b..4b4731a9b 100644 --- a/contrib/opencensus-ext-jaeger/setup.py +++ b/contrib/opencensus-ext-jaeger/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'thrift >= 0.10.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-jaeger/version.py b/contrib/opencensus-ext-jaeger/version.py index bf7c8163b..b320c6063 100644 --- a/contrib/opencensus-ext-jaeger/version.py +++ b/contrib/opencensus-ext-jaeger/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-logging/CHANGELOG.md b/contrib/opencensus-ext-logging/CHANGELOG.md index 23e03050b..f26ea55e9 100644 --- a/contrib/opencensus-ext-logging/CHANGELOG.md +++ b/contrib/opencensus-ext-logging/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.0 Released 2019-05-31 diff --git a/contrib/opencensus-ext-logging/setup.py b/contrib/opencensus-ext-logging/setup.py index e36b84dc3..8b52dff06 100644 --- a/contrib/opencensus-ext-logging/setup.py +++ b/contrib/opencensus-ext-logging/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-logging/version.py b/contrib/opencensus-ext-logging/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-logging/version.py +++ b/contrib/opencensus-ext-logging/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-mysql/CHANGELOG.md b/contrib/opencensus-ext-mysql/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-mysql/CHANGELOG.md +++ b/contrib/opencensus-ext-mysql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-mysql/setup.py b/contrib/opencensus-ext-mysql/setup.py index d84b765e4..ba2b38024 100644 --- a/contrib/opencensus-ext-mysql/setup.py +++ b/contrib/opencensus-ext-mysql/setup.py @@ -40,8 +40,8 @@ long_description=open('README.rst').read(), install_requires=[ 'mysql-connector >= 2.1.6, < 3.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', - 'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', + 'opencensus-ext-dbapi >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-mysql/version.py b/contrib/opencensus-ext-mysql/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-mysql/version.py +++ b/contrib/opencensus-ext-mysql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-ocagent/CHANGELOG.md b/contrib/opencensus-ext-ocagent/CHANGELOG.md index c1f0e931e..36073a665 100644 --- a/contrib/opencensus-ext-ocagent/CHANGELOG.md +++ b/contrib/opencensus-ext-ocagent/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.4.0 Released 2019-05-31 diff --git a/contrib/opencensus-ext-ocagent/setup.py b/contrib/opencensus-ext-ocagent/setup.py index 8c1b26858..64db296dd 100644 --- a/contrib/opencensus-ext-ocagent/setup.py +++ b/contrib/opencensus-ext-ocagent/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'grpcio >= 1.0.0, < 2.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'opencensus-proto >= 0.1.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-ocagent/version.py b/contrib/opencensus-ext-ocagent/version.py index 235cf3f15..b320c6063 100644 --- a/contrib/opencensus-ext-ocagent/version.py +++ b/contrib/opencensus-ext-ocagent/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.5.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-postgresql/CHANGELOG.md b/contrib/opencensus-ext-postgresql/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-postgresql/CHANGELOG.md +++ b/contrib/opencensus-ext-postgresql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-postgresql/setup.py b/contrib/opencensus-ext-postgresql/setup.py index 5e8eb9bbe..8bcabd704 100644 --- a/contrib/opencensus-ext-postgresql/setup.py +++ b/contrib/opencensus-ext-postgresql/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'psycopg2-binary >= 2.7.3.1', ], extras_require={}, diff --git a/contrib/opencensus-ext-postgresql/version.py b/contrib/opencensus-ext-postgresql/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-postgresql/version.py +++ b/contrib/opencensus-ext-postgresql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-prometheus/CHANGELOG.md b/contrib/opencensus-ext-prometheus/CHANGELOG.md index b622c409d..b3677555d 100644 --- a/contrib/opencensus-ext-prometheus/CHANGELOG.md +++ b/contrib/opencensus-ext-prometheus/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.2.1 Released 2019-04-24 diff --git a/contrib/opencensus-ext-prometheus/setup.py b/contrib/opencensus-ext-prometheus/setup.py index a76eaddf3..cc577b835 100644 --- a/contrib/opencensus-ext-prometheus/setup.py +++ b/contrib/opencensus-ext-prometheus/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'prometheus_client >= 0.5.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-prometheus/version.py b/contrib/opencensus-ext-prometheus/version.py index bf7c8163b..b320c6063 100644 --- a/contrib/opencensus-ext-prometheus/version.py +++ b/contrib/opencensus-ext-prometheus/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-pymongo/CHANGELOG.md b/contrib/opencensus-ext-pymongo/CHANGELOG.md index 9ab12d5b5..0c5a14faf 100644 --- a/contrib/opencensus-ext-pymongo/CHANGELOG.md +++ b/contrib/opencensus-ext-pymongo/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.3 Released 2019-05-31 diff --git a/contrib/opencensus-ext-pymongo/setup.py b/contrib/opencensus-ext-pymongo/setup.py index 0f26c789c..0f65700e6 100644 --- a/contrib/opencensus-ext-pymongo/setup.py +++ b/contrib/opencensus-ext-pymongo/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'pymongo >= 3.1.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-pymongo/version.py b/contrib/opencensus-ext-pymongo/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-pymongo/version.py +++ b/contrib/opencensus-ext-pymongo/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-pymysql/CHANGELOG.md b/contrib/opencensus-ext-pymysql/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-pymysql/CHANGELOG.md +++ b/contrib/opencensus-ext-pymysql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-pymysql/setup.py b/contrib/opencensus-ext-pymysql/setup.py index 3f9d08d50..03ac74780 100644 --- a/contrib/opencensus-ext-pymysql/setup.py +++ b/contrib/opencensus-ext-pymysql/setup.py @@ -40,8 +40,8 @@ long_description=open('README.rst').read(), install_requires=[ 'PyMySQL >= 0.7.11, < 1.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', - 'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', + 'opencensus-ext-dbapi >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-pymysql/version.py b/contrib/opencensus-ext-pymysql/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-pymysql/version.py +++ b/contrib/opencensus-ext-pymysql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-pyramid/CHANGELOG.md b/contrib/opencensus-ext-pyramid/CHANGELOG.md index 359dd1205..7dc6896b2 100644 --- a/contrib/opencensus-ext-pyramid/CHANGELOG.md +++ b/contrib/opencensus-ext-pyramid/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.0 +Released 2019-07-31 + - Updated span attributes to include some missing attributes listed [here](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/HTTP.md#attributes) ([#735](https://github.com/census-instrumentation/opencensus-python/pull/735)) diff --git a/contrib/opencensus-ext-pyramid/setup.py b/contrib/opencensus-ext-pyramid/setup.py index dd9589a3c..bab406e97 100644 --- a/contrib/opencensus-ext-pyramid/setup.py +++ b/contrib/opencensus-ext-pyramid/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'pyramid >= 1.9.1, < 2.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-pyramid/version.py b/contrib/opencensus-ext-pyramid/version.py index deb2f374d..b320c6063 100644 --- a/contrib/opencensus-ext-pyramid/version.py +++ b/contrib/opencensus-ext-pyramid/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.4.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-requests/CHANGELOG.md b/contrib/opencensus-ext-requests/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-requests/CHANGELOG.md +++ b/contrib/opencensus-ext-requests/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-requests/setup.py b/contrib/opencensus-ext-requests/setup.py index 761e324fd..0773fcec2 100644 --- a/contrib/opencensus-ext-requests/setup.py +++ b/contrib/opencensus-ext-requests/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'wrapt >= 1.0.0, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-requests/version.py b/contrib/opencensus-ext-requests/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-requests/version.py +++ b/contrib/opencensus-ext-requests/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md +++ b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-sqlalchemy/setup.py b/contrib/opencensus-ext-sqlalchemy/setup.py index e89bd146b..f31671d40 100644 --- a/contrib/opencensus-ext-sqlalchemy/setup.py +++ b/contrib/opencensus-ext-sqlalchemy/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', 'SQLAlchemy >= 1.1.14, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-sqlalchemy/version.py b/contrib/opencensus-ext-sqlalchemy/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-sqlalchemy/version.py +++ b/contrib/opencensus-ext-sqlalchemy/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-stackdriver/CHANGELOG.md b/contrib/opencensus-ext-stackdriver/CHANGELOG.md index ae8f2670e..1e5acd106 100644 --- a/contrib/opencensus-ext-stackdriver/CHANGELOG.md +++ b/contrib/opencensus-ext-stackdriver/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.4.0 Released 2019-05-31 diff --git a/contrib/opencensus-ext-stackdriver/setup.py b/contrib/opencensus-ext-stackdriver/setup.py index 06abc5bc4..29b74fef3 100644 --- a/contrib/opencensus-ext-stackdriver/setup.py +++ b/contrib/opencensus-ext-stackdriver/setup.py @@ -41,7 +41,7 @@ install_requires=[ 'google-cloud-monitoring >= 0.30.0, < 1.0.0', 'google-cloud-trace >= 0.20.0, < 1.0.0', - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-stackdriver/version.py b/contrib/opencensus-ext-stackdriver/version.py index 235cf3f15..b320c6063 100644 --- a/contrib/opencensus-ext-stackdriver/version.py +++ b/contrib/opencensus-ext-stackdriver/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.5.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-threading/CHANGELOG.md b/contrib/opencensus-ext-threading/CHANGELOG.md index f94e0621b..1acccdf64 100644 --- a/contrib/opencensus-ext-threading/CHANGELOG.md +++ b/contrib/opencensus-ext-threading/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.1.2 Released 2019-04-24 diff --git a/contrib/opencensus-ext-threading/setup.py b/contrib/opencensus-ext-threading/setup.py index 6aa3e9425..e92eefc24 100644 --- a/contrib/opencensus-ext-threading/setup.py +++ b/contrib/opencensus-ext-threading/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-threading/version.py b/contrib/opencensus-ext-threading/version.py index ff18aeb50..b320c6063 100644 --- a/contrib/opencensus-ext-threading/version.py +++ b/contrib/opencensus-ext-threading/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.7.0' diff --git a/contrib/opencensus-ext-zipkin/CHANGELOG.md b/contrib/opencensus-ext-zipkin/CHANGELOG.md index b82a493db..e95de1f0c 100644 --- a/contrib/opencensus-ext-zipkin/CHANGELOG.md +++ b/contrib/opencensus-ext-zipkin/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.7.0 +Released 2019-07-31 + +- Version bump + ## 0.2.2 Released 2019-05-31 diff --git a/contrib/opencensus-ext-zipkin/setup.py b/contrib/opencensus-ext-zipkin/setup.py index 8611fa5d5..ce6bac124 100644 --- a/contrib/opencensus-ext-zipkin/setup.py +++ b/contrib/opencensus-ext-zipkin/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.7.dev0, < 1.0.0', + 'opencensus >= 0.7.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-zipkin/version.py b/contrib/opencensus-ext-zipkin/version.py index bf7c8163b..b320c6063 100644 --- a/contrib/opencensus-ext-zipkin/version.py +++ b/contrib/opencensus-ext-zipkin/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.7.0' diff --git a/opencensus/common/version/__init__.py b/opencensus/common/version/__init__.py index ae27d1d16..b320c6063 100644 --- a/opencensus/common/version/__init__.py +++ b/opencensus/common/version/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.7.dev0' +__version__ = '0.7.0' diff --git a/setup.py b/setup.py index 0b9761871..3bc463d50 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus-context == 0.2.dev0', + 'opencensus-context == 0.7.0', 'google-api-core >= 1.0.0, < 2.0.0', ], extras_require={},