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

Document versioning practices for dynamic package #2809

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions dynamic/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
package version

// version is initialized by the Go linker to contain the semver of this build.

guineveresaenger marked this conversation as resolved.
Show resolved Hide resolved
// This is the same mechanism that Pulumi uses to embed versions in all of our binaries.
// When updating the module version of this library, ensure to update the correct module path in
// the Goreleaser for https://github.com/pulumi/pulumi-terraform-provider.
// See also https://github.com/pulumi/pulumi-terraform-provider/pull/56.
var version string

// The Version of the provider.
Expand Down
Loading