From c9b7342b8a07cfe815b14f742c906ca7f2f6134f Mon Sep 17 00:00:00 2001 From: Prashant Srivastava <50466688+srprash@users.noreply.github.com> Date: Mon, 15 Apr 2024 13:30:36 -0700 Subject: [PATCH] Post release 0.1.0: Update version to 0.1.0.dev0 (#162) This PR prepares the main branch for the next development cycle by updating the version to 0.1.0.dev0 and updating the image version to be scanned to the latest released. This PR should only be merge when release for version v0.1.0 is success. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions --- .github/workflows/daily_scan.yml | 4 ++-- .github/workflows/release_build.yml | 2 +- .../src/amazon/opentelemetry/distro/version.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily_scan.yml b/.github/workflows/daily_scan.yml index 692605d..fae7857 100644 --- a/.github/workflows/daily_scan.yml +++ b/.github/workflows/daily_scan.yml @@ -82,7 +82,7 @@ jobs: id: high_scan uses: ./.github/actions/image_scan with: - image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.0.1" + image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.1.0" severity: 'CRITICAL,HIGH' - name: Perform low image scan @@ -90,7 +90,7 @@ jobs: id: low_scan uses: ./.github/actions/image_scan with: - image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.0.1" + image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.1.0" severity: 'MEDIUM,LOW,UNKNOWN' - name: Configure AWS Credentials for emitting metrics diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index c23c66e..0765f45 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -32,7 +32,7 @@ jobs: with: image_uri_with_tag: "adot-autoinstrumentation-python:test" push_image: false - load_image: false + load_image: true python_version: "3.10" package_name: aws-opentelemetry-distro os: ubuntu-latest diff --git a/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py b/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py index 53c0cc7..41afb9a 100644 --- a/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py +++ b/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py @@ -1,4 +1,4 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.0.1.dev0" +__version__ = "0.1.0.dev0"