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

chore: revert broken 2.49.0 changelog changes #1243

Merged
merged 1 commit into from
Oct 28, 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
15 changes: 1 addition & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
<a name="v2.49.0"></a>
## [v2.49.0] - 2024-10-28
### Bug Fixes
- **azure_link_account:** add update capability for all fields in azure cloud link account ([#1242](https://github.com/newrelic/newrelic-client-go/issues/1242))

### Features
- **automation:** execute code generation when new API endpoints are detected
- **dashboards:** Added a new field in dashboards -> variable -> options called <excluded>

### Refactor
- **automation:** don't send slack message if no new endpoints

<a name="v2.48.2"></a>
## [v2.48.2] - 2024-10-04
### Bug Fixes
Expand Down Expand Up @@ -1927,8 +1915,7 @@
- extract paging implementation
- rename packages for clarity, promote Config to the public package

[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v2.49.0...HEAD
[v2.49.0]: https://github.com/newrelic/newrelic-client-go/compare/v2.48.2...v2.49.0
[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v2.48.2...HEAD
[v2.48.2]: https://github.com/newrelic/newrelic-client-go/compare/v2.48.1...v2.48.2
[v2.48.1]: https://github.com/newrelic/newrelic-client-go/compare/v2.48.0...v2.48.1
[v2.48.0]: https://github.com/newrelic/newrelic-client-go/compare/v2.47.0...v2.48.0
Expand Down
2 changes: 1 addition & 1 deletion build/release.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RELEASE_SCRIPT ?= ./scripts/release.sh

REL_CMD ?= $(GOBIN)/goreleaser
REL_CMD ?= goreleaser
DIST_DIR ?= ./dist

# Versioning info
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version of this library
const Version string = "2.49.0"
const Version string = "2.48.2"
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ VER_CMD=${GOBIN}/svu
VER_BUMP=${GOBIN}/gobump
CHANGELOG_CMD=${GOBIN}/git-chglog
CHANGELOG_FILE=CHANGELOG.md
REL_CMD=${GOBIN}/goreleaser
REL_CMD=goreleaser
RELEASE_NOTES_FILE=${SRCDIR}/tmp/relnotes.md
SPELL_CMD=${GOBIN}/misspell

Expand Down
Loading