Disable dev preview for `CrateVersioner` (#3241)

## Motivation and Context
In this stable release branch, `CrateVersioner` needs to start
versioning SDK crates in a way they are stable.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
This commit is contained in:
ysaito1001 2023-11-21 10:24:58 -06:00 committed by GitHub
parent e8f771b141
commit 09e46f47d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ object CrateVersioner {
IndependentCrateVersioner( IndependentCrateVersioner(
VersionsManifest.fromFile(versionsManifestPath), VersionsManifest.fromFile(versionsManifestPath),
ModelMetadata.fromFile(modelMetadataPath), ModelMetadata.fromFile(modelMetadataPath),
devPreview = true, devPreview = false,
smithyRsVersion = getSmithyRsVersion(rootProject), smithyRsVersion = getSmithyRsVersion(rootProject),
) )
} }