From 11c6de944e746a724b28c5eb1c699222f1ddb9c7 Mon Sep 17 00:00:00 2001 From: nleiva Date: Fri, 29 Apr 2022 01:18:35 -0400 Subject: [PATCH] Tag release v0.2.3 --- GNUmakefile | 2 +- README.md | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 92cb9ba..8b84f4a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,7 +3,7 @@ HOSTNAME=github.com NAMESPACE=nleiva NAME=nautobot BINARY=terraform-provider-${NAME} -VERSION=0.2.1 +VERSION=0.2.3 OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) diff --git a/README.md b/README.md index e525e6f..ff2b61a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Terraform Provider Nautobot +Nautobot provider created for educational purposes. You can fork it for long term development :-) + ## Requirements - [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x @@ -61,9 +63,9 @@ resource "nautobot_manufacturer" "new" { If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above). -To compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory. +To compile the provider, run `make install`. -To generate or update documentation, run `go generate`. +To generate or update documentation, run `go generate ./...`. In order to run the full suite of Acceptance tests, run `make testacc`.