Skip to content

Commit 3198907

Browse files
committed
Cut release 1.0.5
1 parent 01502e8 commit 3198907

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Packer Plugin Virtualbox
2-
The `Virtualbox` multi-component plugin can be used with HashiCorp [Packer](https://www.packer.io)
2+
The `Virtualbox` multi-component plugin can be used with HashiCorp [Packer](https://developer.hashicorp.com/packer)
33
to create custom images. For the full list of available features for this plugin see [docs](docs).
44

55
## Installation
@@ -10,16 +10,16 @@ to create custom images. For the full list of available features for this plugin
1010

1111
Starting from version 1.7, Packer supports a new `packer init` command allowing
1212
automatic installation of Packer plugins. Read the
13-
[Packer documentation](https://www.packer.io/docs/commands/init) for more information.
13+
[Packer documentation](https://developer.hashicorp.com/packer/docs/commands/init) for more information.
1414

1515
To install this plugin, copy and paste this code into your Packer configuration .
16-
Then, run [`packer init`](https://www.packer.io/docs/commands/init).
16+
Then, run [`packer init`](https://developer.hashicorp.com/packer/docs/commands/init).
1717

1818
```hcl
1919
packer {
2020
required_plugins {
2121
virtualbox = {
22-
version = ">= 0.0.1"
22+
version = ">= 1.0.5"
2323
source = "github.com/hashicorp/virtualbox"
2424
}
2525
}
@@ -33,7 +33,7 @@ You can find pre-built binary releases of the plugin [here](https://github.com/h
3333
Once you have downloaded the latest archive corresponding to your target OS,
3434
uncompress it to retrieve the plugin binary file corresponding to your platform.
3535
To install the plugin, please follow the Packer documentation on
36-
[installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).
36+
[installing a plugin](https://developer.hashicorp.com/packer/docs/extending/plugins/#installing-plugins).
3737

3838

3939
### From Sources
@@ -43,7 +43,7 @@ locally and run the command `go build` from the root
4343
directory. Upon successful compilation, a `packer-plugin-virtualbox` plugin
4444
binary file can be found in the root directory.
4545
To install the compiled plugin, please follow the official Packer documentation
46-
on [installing a plugin](https://www.packer.io/docs/extending/plugins/#installing-plugins).
46+
on [installing a plugin](https://developer.hashicorp.com/packer/docs/extending/plugins/#installing-plugins).
4747

4848

4949
### Configuration

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ The following VirtualBox builders are supported:
2525
creates a snapshot to save the changes applied from the provisioners. In
2626
addition the builder is able to export that machine to create an image. The
2727
builder is able to attach to a defined snapshot as a starting point, which
28-
could be defined statically or dynamically via a variable.
28+
could be defined statically or dynamically via a variable.

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import "github.com/hashicorp/packer-plugin-sdk/version"
44

55
var (
66
// Version is the main version number that is being run at the moment.
7-
Version = "1.0.4"
7+
Version = "1.0.5"
88

99
// VersionPrerelease is A pre-release marker for the Version. If this is ""
1010
// (empty string) then it means that it is a final release. Otherwise, this
1111
// is a pre-release such as "dev" (in development), "beta", "rc1", etc.
12-
VersionPrerelease = "dev"
12+
VersionPrerelease = ""
1313

1414
// PluginVersion is used by the plugin set to allow Packer to recognize
1515
// what version this plugin is.

0 commit comments

Comments
 (0)