Skip to content

Commit a4f647e

Browse files
committed
fix: bump version
1 parent 0e7248c commit a4f647e

File tree

295 files changed

+12047
-45271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

295 files changed

+12047
-45271
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update && \
1818
# See README.md
1919

2020
# Install go
21-
ARG GO_VERSION=1.19.3
21+
ARG GO_VERSION=1.22.1
2222
RUN rm -rf /usr/local/go && \
2323
wget -O ${GO_VERSION}.tar.gz https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz && \
2424
tar -C /usr/local -xzf ${GO_VERSION}.tar.gz && \

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ provider/**/schema-embed.json
2121
**/version.txt
2222
**/nuget
2323
**/dist
24+
sdk/*

.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ builds:
1818
- linux
1919
ldflags:
2020
# The line below MUST align with the module in current provider/go.mod
21-
- -X github.com/hbjydev/pulumi-netbox/provider/pkg/version.Version={{.Tag }}
21+
- -X github.com/SpikeeLabs/pulumi-netbox/provider/pkg/version.Version={{.Tag }}
2222
main: ./cmd/pulumi-resource-netbox/
2323
changelog:
2424
skip: true

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PROJECT_NAME := netbox Package
22

33
SHELL := /bin/bash
44
PACK := netbox
5-
ORG := hbjydev
5+
ORG := SpikeeLabs
66
PROJECT := github.com/${ORG}/pulumi-${PACK}
77
NODE_MODULE_NAME := @pulumi/${PACK}
88
TF_NAME := ${PACK}

README-PROVIDER.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ This package is available for several languages/platforms:
1111
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
1212

1313
```bash
14-
npm install @hbjydev/pulumi-netbox
14+
npm install @SpikeeLabs/pulumi-netbox
1515
```
1616

1717
or `yarn`:
1818

1919
```bash
20-
yarn add @hbjydev/pulumi-netbox
20+
yarn add @SpikeeLabs/pulumi-netbox
2121
```
2222

2323
### Python
@@ -33,15 +33,15 @@ pip install pulumi_netbox
3333
To use from Go, use `go get` to grab the latest version of the library:
3434

3535
```bash
36-
go get github.com/hbjydev/pulumi-netbox/sdk/go/...
36+
go get github.com/SpikeeLabs/pulumi-netbox/sdk/go/...
3737
```
3838

3939
### .NET
4040

4141
To use from .NET, install using `dotnet add package`:
4242

4343
```bash
44-
dotnet add package HBJYDev.Netbox
44+
dotnet add package SpikeeLabs.Netbox
4545
```
4646

4747
## Configuration

examples/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/hbjydev/pulumi-netbox/examples
1+
module github.com/SpikeeLabs/pulumi-netbox/examples
22

3-
go 1.16
3+
go 1.16

provider/cmd/pulumi-resource-netbox/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
_ "embed"
2121

2222
"github.com/pulumi/pulumi-terraform-bridge/v3/pkg/tfbridge"
23-
netbox "github.com/hbjydev/pulumi-netbox/provider"
24-
"github.com/hbjydev/pulumi-netbox/provider/pkg/version"
23+
netbox "github.com/SpikeeLabs/pulumi-netbox/provider"
24+
"github.com/SpikeeLabs/pulumi-netbox/provider/pkg/version"
2525
)
2626

2727
//go:embed schema-embed.json

0 commit comments

Comments
 (0)