Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solarwinds-apm 1.3.0 #315

Merged
merged 3 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/scripts/release_pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ gh api -X POST /repos/solarwinds/apm-python/git/refs \
# Get SHA of current version.py at main
SHA=$(gh api /repos/solarwinds/apm-python/contents/solarwinds_apm/version.py?ref="main" --jq '.sha')

content=$(base64 <<< "__version__ = \"$version_number\"\n")
newline=$'\n'
content=$(base64 <<< "__version__ = \"$version_number\"$newline")

# Commit version.py with updated agent version
echo "Pushing new version.py to branch '$branch_name'"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/solarwinds/apm-python/compare/rel-1.3.0...HEAD)

## [1.3.0.0](https://github.com/solarwinds/apm-python/releases/tag/rel-1.3.0) - 2024-02-20
## [1.3.0](https://github.com/solarwinds/apm-python/releases/tag/rel-1.3.0) - 2024-02-20

### Changed
- Fixed release_pr script ([#302](https://github.com/solarwinds/apm-python/pull/302))
Expand Down
2 changes: 1 addition & 1 deletion solarwinds_apm/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0.0"
__version__ = "1.3.0"