diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d8c04dbb..2b296f541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.18b1](https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/v0.18b1) - 2021-02-19 - Hotfix for https://github.com/open-telemetry/opentelemetry-python-contrib/issues/346 - ([#301](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/301)) + Bump version dependencies for `opentelemetry-instrumentation` + ([#347](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/347)) ## [0.18b0](https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/v0.18b0) - 2021-02-16 diff --git a/instrumentation/opentelemetry-instrumentation-aiohttp-client/setup.cfg b/instrumentation/opentelemetry-instrumentation-aiohttp-client/setup.cfg index 82148b9b7..a107cf0d8 100644 --- a/instrumentation/opentelemetry-instrumentation-aiohttp-client/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-aiohttp-client/setup.cfg @@ -40,7 +40,7 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 aiohttp ~= 3.0 wrapt >= 1.0.0, < 2.0.0 diff --git a/instrumentation/opentelemetry-instrumentation-aiopg/setup.cfg b/instrumentation/opentelemetry-instrumentation-aiopg/setup.cfg index 9852b8e94..a1e94bef5 100644 --- a/instrumentation/opentelemetry-instrumentation-aiopg/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-aiopg/setup.cfg @@ -41,13 +41,13 @@ packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-dbapi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 aiopg >= 0.13.0 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-asgi/setup.cfg b/instrumentation/opentelemetry-instrumentation-asgi/setup.cfg index bbd61bac2..28d8822ee 100644 --- a/instrumentation/opentelemetry-instrumentation-asgi/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-asgi/setup.cfg @@ -40,7 +40,7 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 asgiref ~= 3.0 [options.extras_require] diff --git a/instrumentation/opentelemetry-instrumentation-asyncpg/setup.cfg b/instrumentation/opentelemetry-instrumentation-asyncpg/setup.cfg index b58286c51..62c123fea 100644 --- a/instrumentation/opentelemetry-instrumentation-asyncpg/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-asyncpg/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 asyncpg >= 0.12.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-boto/setup.cfg b/instrumentation/opentelemetry-instrumentation-boto/setup.cfg index e3591710e..2313655a4 100644 --- a/instrumentation/opentelemetry-instrumentation-boto/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-boto/setup.cfg @@ -41,14 +41,14 @@ packages=find_namespace: install_requires = boto ~= 2.0 opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-instrumentation-botocore == 0.18b1 [options.extras_require] test = boto~=2.0 moto~=1.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-botocore/setup.cfg b/instrumentation/opentelemetry-instrumentation-botocore/setup.cfg index bf425b138..0038ea492 100644 --- a/instrumentation/opentelemetry-instrumentation-botocore/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-botocore/setup.cfg @@ -41,12 +41,12 @@ packages=find_namespace: install_requires = botocore ~= 1.0 opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 [options.extras_require] test = moto ~= 1.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-celery/setup.cfg b/instrumentation/opentelemetry-instrumentation-celery/setup.cfg index 2e1a8a66f..fc6bf1478 100644 --- a/instrumentation/opentelemetry-instrumentation-celery/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-celery/setup.cfg @@ -41,13 +41,13 @@ packages=find_namespace: install_requires = celery >= 4.0, < 6.0 opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 [options.extras_require] test = pytest celery >= 4.0, < 6.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-dbapi/setup.cfg b/instrumentation/opentelemetry-instrumentation-dbapi/setup.cfg index 0bfd8f7a3..b2bd8d246 100644 --- a/instrumentation/opentelemetry-instrumentation-dbapi/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-dbapi/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-django/setup.cfg b/instrumentation/opentelemetry-instrumentation-django/setup.cfg index 8ed8b7227..1092901b7 100644 --- a/instrumentation/opentelemetry-instrumentation-django/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-django/setup.cfg @@ -42,12 +42,12 @@ install_requires = django >= 1.10 opentelemetry-util-http == 0.18b1 opentelemetry-instrumentation-wsgi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-api == 1.0.0rc1 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-elasticsearch/setup.cfg b/instrumentation/opentelemetry-instrumentation-elasticsearch/setup.cfg index f2730d821..f70f48211 100644 --- a/instrumentation/opentelemetry-instrumentation-elasticsearch/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-elasticsearch/setup.cfg @@ -40,13 +40,13 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 wrapt >= 1.0.0, < 2.0.0 elasticsearch >= 2.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 elasticsearch-dsl >= 2.0 [options.packages.find] diff --git a/instrumentation/opentelemetry-instrumentation-falcon/setup.cfg b/instrumentation/opentelemetry-instrumentation-falcon/setup.cfg index 944d89826..b5e616666 100644 --- a/instrumentation/opentelemetry-instrumentation-falcon/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-falcon/setup.cfg @@ -43,13 +43,13 @@ install_requires = falcon ~= 2.0 opentelemetry-instrumentation-wsgi == 0.18b1 opentelemetry-util-http == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-api == 1.0.0rc1 [options.extras_require] test = falcon ~= 2.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 parameterized == 0.7.4 [options.packages.find] diff --git a/instrumentation/opentelemetry-instrumentation-fastapi/setup.cfg b/instrumentation/opentelemetry-instrumentation-fastapi/setup.cfg index 8591ecd56..09f20744c 100644 --- a/instrumentation/opentelemetry-instrumentation-fastapi/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-fastapi/setup.cfg @@ -48,7 +48,7 @@ opentelemetry_instrumentor = [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 fastapi ~= 0.58.1 requests ~= 2.23.0 # needed for testclient diff --git a/instrumentation/opentelemetry-instrumentation-flask/setup.cfg b/instrumentation/opentelemetry-instrumentation-flask/setup.cfg index b11a216b1..4a845f999 100644 --- a/instrumentation/opentelemetry-instrumentation-flask/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-flask/setup.cfg @@ -41,14 +41,14 @@ packages=find_namespace: install_requires = flask ~= 1.0 opentelemetry-util-http == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-instrumentation-wsgi == 0.18b1 opentelemetry-api == 1.0.0rc1 [options.extras_require] test = flask~=1.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-grpc/setup.cfg b/instrumentation/opentelemetry-instrumentation-grpc/setup.cfg index 8803c3391..65cdb4ee5 100644 --- a/instrumentation/opentelemetry-instrumentation-grpc/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-grpc/setup.cfg @@ -45,7 +45,7 @@ install_requires = [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 opentelemetry-sdk == 1.0.0rc1 protobuf >= 3.13.0 diff --git a/instrumentation/opentelemetry-instrumentation-jinja2/setup.cfg b/instrumentation/opentelemetry-instrumentation-jinja2/setup.cfg index e3e8f7816..4806122c7 100644 --- a/instrumentation/opentelemetry-instrumentation-jinja2/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-jinja2/setup.cfg @@ -39,13 +39,13 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 jinja2~=2.7 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-mysql/setup.cfg b/instrumentation/opentelemetry-instrumentation-mysql/setup.cfg index 79734163a..be54dde5b 100644 --- a/instrumentation/opentelemetry-instrumentation-mysql/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-mysql/setup.cfg @@ -41,13 +41,13 @@ packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-dbapi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 mysql-connector-python ~= 8.0 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-psycopg2/setup.cfg b/instrumentation/opentelemetry-instrumentation-psycopg2/setup.cfg index e2f65be86..0b61c9eef 100644 --- a/instrumentation/opentelemetry-instrumentation-psycopg2/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-psycopg2/setup.cfg @@ -41,13 +41,13 @@ packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-dbapi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 psycopg2-binary >= 2.7.3.1 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-pymemcache/setup.cfg b/instrumentation/opentelemetry-instrumentation-pymemcache/setup.cfg index ce9a6180c..7e6544f60 100644 --- a/instrumentation/opentelemetry-instrumentation-pymemcache/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-pymemcache/setup.cfg @@ -40,13 +40,13 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 pymemcache ~= 1.3 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-pymongo/setup.cfg b/instrumentation/opentelemetry-instrumentation-pymongo/setup.cfg index 32cac108d..b7bf07c28 100644 --- a/instrumentation/opentelemetry-instrumentation-pymongo/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-pymongo/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 pymongo ~= 3.1 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-pymysql/setup.cfg b/instrumentation/opentelemetry-instrumentation-pymysql/setup.cfg index fa8616352..88cd56c52 100644 --- a/instrumentation/opentelemetry-instrumentation-pymysql/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-pymysql/setup.cfg @@ -41,12 +41,12 @@ packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-dbapi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 PyMySQL ~= 0.10.1 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-pyramid/setup.cfg b/instrumentation/opentelemetry-instrumentation-pyramid/setup.cfg index 7a4b6f161..4a1d05d40 100644 --- a/instrumentation/opentelemetry-instrumentation-pyramid/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-pyramid/setup.cfg @@ -40,7 +40,7 @@ package_dir= packages=find_namespace: install_requires = pyramid >= 1.7 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-wsgi == 0.18b1 opentelemetry-util-http == 0.18b1 @@ -49,7 +49,7 @@ install_requires = [options.extras_require] test = werkzeug == 0.16.1 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-redis/setup.cfg b/instrumentation/opentelemetry-instrumentation-redis/setup.cfg index c8428eaae..40f38d6c1 100644 --- a/instrumentation/opentelemetry-instrumentation-redis/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-redis/setup.cfg @@ -40,13 +40,13 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 redis >= 2.6 wrapt >= 1.12.1 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 opentelemetry-sdk == 1.0.0rc1 [options.packages.find] diff --git a/instrumentation/opentelemetry-instrumentation-requests/setup.cfg b/instrumentation/opentelemetry-instrumentation-requests/setup.cfg index 55b2d1c44..e74771e4c 100644 --- a/instrumentation/opentelemetry-instrumentation-requests/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-requests/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 requests ~= 2.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 httpretty ~= 1.0 [options.packages.find] diff --git a/instrumentation/opentelemetry-instrumentation-sklearn/setup.cfg b/instrumentation/opentelemetry-instrumentation-sklearn/setup.cfg index 1345ab2e2..343e86dfb 100644 --- a/instrumentation/opentelemetry-instrumentation-sklearn/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-sklearn/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 scikit-learn ~= 0.22.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-sqlalchemy/setup.cfg b/instrumentation/opentelemetry-instrumentation-sqlalchemy/setup.cfg index 5ced7ee4e..c4b2ee34e 100644 --- a/instrumentation/opentelemetry-instrumentation-sqlalchemy/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-sqlalchemy/setup.cfg @@ -40,7 +40,7 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 wrapt >= 1.11.2 sqlalchemy diff --git a/instrumentation/opentelemetry-instrumentation-sqlite3/setup.cfg b/instrumentation/opentelemetry-instrumentation-sqlite3/setup.cfg index a15d94729..28cb0a6b8 100644 --- a/instrumentation/opentelemetry-instrumentation-sqlite3/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-sqlite3/setup.cfg @@ -41,12 +41,12 @@ packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 opentelemetry-instrumentation-dbapi == 0.18b1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 wrapt >= 1.0.0, < 2.0.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-starlette/setup.cfg b/instrumentation/opentelemetry-instrumentation-starlette/setup.cfg index 69656de4a..0989868df 100644 --- a/instrumentation/opentelemetry-instrumentation-starlette/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-starlette/setup.cfg @@ -48,7 +48,7 @@ opentelemetry_instrumentor = [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 starlette ~= 0.13.0 requests ~= 2.23.0 # needed for testclient diff --git a/instrumentation/opentelemetry-instrumentation-tornado/setup.cfg b/instrumentation/opentelemetry-instrumentation-tornado/setup.cfg index 4ffa36d5f..5c5f23993 100644 --- a/instrumentation/opentelemetry-instrumentation-tornado/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-tornado/setup.cfg @@ -39,14 +39,14 @@ package_dir= packages=find_namespace: install_requires = tornado >= 6.0 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 opentelemetry-api == 1.0.0rc1 opentelemetry-util-http == 0.18b1 [options.extras_require] test = tornado >= 6.0 - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/instrumentation/opentelemetry-instrumentation-urllib/setup.cfg b/instrumentation/opentelemetry-instrumentation-urllib/setup.cfg index aa501f88f..7ae15f08a 100644 --- a/instrumentation/opentelemetry-instrumentation-urllib/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-urllib/setup.cfg @@ -40,7 +40,7 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 [options.extras_require] test = diff --git a/instrumentation/opentelemetry-instrumentation-wsgi/setup.cfg b/instrumentation/opentelemetry-instrumentation-wsgi/setup.cfg index 0e5b81376..9f4695af0 100644 --- a/instrumentation/opentelemetry-instrumentation-wsgi/setup.cfg +++ b/instrumentation/opentelemetry-instrumentation-wsgi/setup.cfg @@ -40,11 +40,11 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/sdk-extension/opentelemetry-sdk-extension-aws/setup.cfg b/sdk-extension/opentelemetry-sdk-extension-aws/setup.cfg index ebd916c40..3632c7819 100644 --- a/sdk-extension/opentelemetry-sdk-extension-aws/setup.cfg +++ b/sdk-extension/opentelemetry-sdk-extension-aws/setup.cfg @@ -49,7 +49,7 @@ opentelemetry_ids_generator = [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src diff --git a/util/opentelemetry-util-http/setup.cfg b/util/opentelemetry-util-http/setup.cfg index ee3951ce4..dfc341fb3 100644 --- a/util/opentelemetry-util-http/setup.cfg +++ b/util/opentelemetry-util-http/setup.cfg @@ -40,12 +40,12 @@ package_dir= packages=find_namespace: install_requires = opentelemetry-api == 1.0.0rc1 - opentelemetry-instrumentation == 0.17b0 + opentelemetry-instrumentation == 0.18b0 asgiref ~= 3.0 [options.extras_require] test = - opentelemetry-test == 0.17b0 + opentelemetry-test == 0.18b0 [options.packages.find] where = src