Skip to content

Commit

Permalink
Merge pull request #81 from ethanmdavidson/readme-updates
Browse files Browse the repository at this point in the history
add more info to docs and fix version number
  • Loading branch information
ethanmdavidson committed Sep 15, 2023
2 parents 5a6b994 + f265a15 commit 94ab9f0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand All @@ -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

Expand All @@ -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.

2 changes: 1 addition & 1 deletion docs/datasources/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 94ab9f0

Please sign in to comment.