chore: bump @ai-sdk/anthropic-aws to v2.0.0 - #16737
Merged
Merged
Conversation
The provider was first published as 1.0.0 because its `major` changeset was applied to the package's starting 0.0.1 version instead of the intended 1.0.0. This major changeset corrects the version to 2.0.0. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
majorchangeset for@ai-sdk/anthropic-awsto release it as2.0.0.Why
When the provider was first added in #15230, it was intended to launch as
1.0.0. Instead it published as1.0.0-canary.0(and later1.0.x), because changesets applies the bump to the package's currentpackage.jsonversion, not to theinitialVersionsentry in.changeset/pre.json.The package shipped its
package.jsonat0.0.1, so themajorchangeset computedsemverInc("0.0.1", "major")→1.0.0rather than the intended2.0.0-worthy first stable. The1.0.0recorded inpre.json'sinitialVersionsis bookkeeping state and is never used to compute the released version.This changeset corrects the version line by bumping the current version to
2.0.0.Changes
.changeset/anthropic-aws-major-v2.md(majorbump for@ai-sdk/anthropic-aws)No production code changes.