Skip to content

Commit

Permalink
updating changelogs and version to 1.6.1-0.25b1 (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzchen authored Oct 18, 2021
1 parent c6ec486 commit f3dde6b
Show file tree
Hide file tree
Showing 80 changed files with 169 additions and 167 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: 025246b8eaa332aa089dff65f35bc868cabf5387
CORE_REPO_SHA: 0e12b8f9157a51ead168b63a4cb3b41bfc022540

jobs:
build:
Expand Down
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.6.0-0.25b0...HEAD)
- `opentelemetry-sdk-extension-aws` & `opentelemetry-propagator-aws` Remove unnecessary dependencies on `opentelemetry-test`
([#752](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/752))
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.6.1-0.25b1...HEAD)

## [1.6.1-0.25b1](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.6.1-0.25b1) - 2021-10-18

### Changed
- `opentelemetry-util-http` no longer contains an instrumentation entrypoint and will not be loaded
Expand All @@ -17,6 +17,8 @@ automatically by the auto instrumentor.
([#740](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/740))
- `opentelemetry-instrumentation-botocore` Add extension for DynamoDB
([#735](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/735))
- `opentelemetry-sdk-extension-aws` & `opentelemetry-propagator-aws` Remove unnecessary dependencies on `opentelemetry-test`
([#752](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/752))

## [1.6.0-0.25b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.6.0-0.25b0) - 2021-10-13
### Added
Expand Down
2 changes: 1 addition & 1 deletion _template/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.25b0"
__version__ = "0.25b1"
4 changes: 2 additions & 2 deletions eachdist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sortfirst=
ext/*

[stable]
version=1.6.0
version=1.6.1

packages=
opentelemetry-sdk
Expand All @@ -34,7 +34,7 @@ packages=
opentelemetry-api

[prerelease]
version=0.25b0
version=0.25b1

packages=
all
Expand Down
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-datadog/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ install_requires =
ddtrace>=0.34.0,<0.47.0
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-semantic-conventions == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
2 changes: 1 addition & 1 deletion exporter/opentelemetry-exporter-richconsole/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ install_requires =
rich>=10.0.0
opentelemetry-api ~= 1.3
opentelemetry-sdk ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-semantic-conventions == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-util-http == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-util-http == 0.25b1
wrapt >= 1.0.0, < 2.0.0

[options.packages.find]
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.25b0"
__version__ = "0.25b1"
8 changes: 4 additions & 4 deletions instrumentation/opentelemetry-instrumentation-aiopg/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-instrumentation-dbapi == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-instrumentation-dbapi == 0.25b1
opentelemetry-instrumentation == 0.25b1
wrapt >= 1.0.0, < 2.0.0

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-test == 0.25b1
opentelemetry-semantic-conventions == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
8 changes: 4 additions & 4 deletions instrumentation/opentelemetry-instrumentation-asgi/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-util-http == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-util-http == 0.25b1

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
6 changes: 3 additions & 3 deletions instrumentation/opentelemetry-instrumentation-boto/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1

[options.extras_require]
test =
moto~=2.0
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1

[options.extras_require]
test =
moto[all] ~= 2.0
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1

[options.extras_require]
test =
pytest
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
6 changes: 3 additions & 3 deletions instrumentation/opentelemetry-instrumentation-dbapi/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1
wrapt >= 1.0.0, < 2.0.0

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.25b0"
__version__ = "0.25b1"

_instruments = tuple()
12 changes: 6 additions & 6 deletions instrumentation/opentelemetry-instrumentation-django/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-util-http == 0.25b0
opentelemetry-instrumentation-wsgi == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-util-http == 0.25b1
opentelemetry-instrumentation-wsgi == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-semantic-conventions == 0.25b1

[options.extras_require]
asgi =
opentelemetry-instrumentation-asgi == 0.25b0
opentelemetry-instrumentation-asgi == 0.25b1
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.packages.find]
where = src
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.25b0"
__version__ = "0.25b1"
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1
wrapt >= 1.0.0, < 2.0.0

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1
elasticsearch-dsl >= 2.0

[options.packages.find]
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.25b0"
__version__ = "0.25b1"
10 changes: 5 additions & 5 deletions instrumentation/opentelemetry-instrumentation-falcon/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-instrumentation-wsgi == 0.25b0
opentelemetry-util-http == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-instrumentation-wsgi == 0.25b1
opentelemetry-util-http == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-semantic-conventions == 0.25b1

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1
parameterized == 0.7.4

[options.packages.find]
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.25b0"
__version__ = "0.25b1"
10 changes: 5 additions & 5 deletions instrumentation/opentelemetry-instrumentation-fastapi/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ package_dir=
packages=find_namespace:
install_requires =
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-instrumentation-asgi == 0.25b0
opentelemetry-util-http == 0.25b0
opentelemetry-semantic-conventions == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-instrumentation-asgi == 0.25b1
opentelemetry-util-http == 0.25b1

[options.entry_points]
opentelemetry_instrumentor =
fastapi = opentelemetry.instrumentation.fastapi:FastAPIInstrumentor

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1
requests ~= 2.23.0 # needed for testclient

[options.packages.find]
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.25b0"
__version__ = "0.25b1"
10 changes: 5 additions & 5 deletions instrumentation/opentelemetry-instrumentation-flask/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ package_dir=
=src
packages=find_namespace:
install_requires =
opentelemetry-util-http == 0.25b0
opentelemetry-instrumentation == 0.25b0
opentelemetry-instrumentation-wsgi == 0.25b0
opentelemetry-util-http == 0.25b1
opentelemetry-instrumentation == 0.25b1
opentelemetry-instrumentation-wsgi == 0.25b1
opentelemetry-api ~= 1.3
opentelemetry-semantic-conventions == 0.25b0
opentelemetry-semantic-conventions == 0.25b1

[options.extras_require]
test =
opentelemetry-test == 0.25b0
opentelemetry-test == 0.25b1

[options.entry_points]
opentelemetry_instrumentor =
Expand Down
Loading

0 comments on commit f3dde6b

Please sign in to comment.