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

fix version bug #26

Merged
merged 1 commit into from
Mar 22, 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
1 change: 1 addition & 0 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ func Provider() tfbridge.ProviderInfo {
P: pf.ShimProvider(provider),
TFProviderModuleVersion: "v2",
Name: "twingate",
Version: version.Version,
// DisplayName is a way to be able to change the casing of the provider
// name when being displayed on the Pulumi registry
DisplayName: "Twingate",
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Config/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
A Pulumi package for creating and managing twingate cloud resources.
A Pulumi package for creating and managing Twingate cloud resources.
2 changes: 1 addition & 1 deletion sdk/dotnet/Pulumi.Twingate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Twingate</Authors>
<Company>Twingate</Company>
<Description>A Pulumi package for creating and managing twingate cloud resources.</Description>
<Description>A Pulumi package for creating and managing Twingate cloud resources.</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://www.twingate.com</PackageProjectUrl>
<RepositoryUrl>https://github.com/Twingate/pulumi-twingate</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
A Pulumi package for creating and managing twingate cloud resources.
A Pulumi package for creating and managing Twingate cloud resources.
2 changes: 1 addition & 1 deletion sdk/go/twingate/doc.go
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// A Pulumi package for creating and managing twingate cloud resources.
// A Pulumi package for creating and managing Twingate cloud resources.
package twingate
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@twingate/pulumi-twingate",
"version": "${VERSION}",
"description": "A Pulumi package for creating and managing twingate cloud resources.",
"description": "A Pulumi package for creating and managing Twingate cloud resources.",
"keywords": [
"pulumi",
"twingate",
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def readme():
setup(name='pulumi_twingate',
python_requires='>=3.8',
version=VERSION,
description="A Pulumi package for creating and managing twingate cloud resources.",
description="A Pulumi package for creating and managing Twingate cloud resources.",
long_description=readme(),
long_description_content_type='text/markdown',
keywords='pulumi twingate category/infrastructure',
Expand Down
Loading