From f265a1594b1d8a7ad484d40dbb6cc6ef2a8bdae6 Mon Sep 17 00:00:00 2001 From: Ethan Davidson Date: Thu, 14 Sep 2023 20:47:17 -0400 Subject: [PATCH] add more info to docs and fix version number --- README.md | 14 ++++++++++++-- docs/datasources/index.mdx | 2 +- main.go | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 335f526..91462de 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add the plugin to your packer config: packer { required_plugins { git = { - version = ">= 0.3.5" + version = ">= 0.4.3" source = "github.com/ethanmdavidson/git" } } @@ -35,7 +35,14 @@ locals { } ``` -See docs for more detailed information. +### Examples + +See [the examples directory](example) for some example code. + +### Components + +See [the docs](docs/README.md) for a reference of all the available +components and their attributes. ## Development @@ -55,3 +62,6 @@ For local development, you will need to install: - [Go](https://golang.org/doc/install) >= 1.19 - [GNU Make](https://www.gnu.org/software/make/) +Check out the [Packer docs on Developing Plugins](https://developer.hashicorp.com/packer/docs/plugins/creation) +for more detailed info on plugins. + diff --git a/docs/datasources/index.mdx b/docs/datasources/index.mdx index 2d918e3..b4be597 100644 --- a/docs/datasources/index.mdx +++ b/docs/datasources/index.mdx @@ -28,7 +28,7 @@ configuration to install this plugin. Then, run packer { required_plugins { git = { - version = ">= 0.3.5" + version = ">= 0.4.3" source = "github.com/ethanmdavidson/git" } } diff --git a/main.go b/main.go index 0d61528..3f83ac3 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.3.5" + Version = "0.4.3" // VersionPrerelease is A pre-release marker for the Version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this