Skip to content

Commit

Permalink
Bump version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frousselet committed Jan 22, 2024
1 parent 60850dc commit 9ac3407
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 1.4.0 (Unreleased)
# 1.4.0 (January 22nd, 2024)

FEATURES:

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ If you are intereseted working on an issue, open a new Pull Request as _Draft_ a

### Stale Issues and Pull Requests

Issues and Pull Requests are automaticaly labeled as `stale` after 55 days. Without any action, the Issue or the Pull request is closed 5 days after.
Issues and Pull Requests are automaticaly labeled as `stale` after 30 days. Without any action, the Issue or the Pull request is closed 5 days after.

### Quality

Expand Down
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,27 @@

## Example usage

Configure the OpenNebula Provider:

```hcl
provider "opennebula" {
endpoint = "<ENDPOINT URL>"
flow_endpoint = "<FLOW ENDPOINT URL>"
username = "<USERNAME>"
password = "<PASSWORD OR TOKEN>"
terraform {
required_providers {
opennebula = {
source = "OpenNebula/opennebula"
version = "~> 1.4"
}
}
}
```
Create OpenNebula resources:
provider "opennebula" {
endpoint = "https://example.com:2633/RPC2"
}
```hcl
resource "opennebula_group" "group" {
# ...
name = "OpenNebula"
}
```

More details [here](./website/docs/index.html.markdown).

## OpenNebula versions support

* `~> 6.8`
Expand Down
4 changes: 2 additions & 2 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
opennebula = {
source = "OpenNebula/opennebula"
version = "~> 1.3"
version = "~> 1.4"
}
}
}
Expand All @@ -30,7 +30,7 @@ provider "opennebula" {
}
resource "opennebula_group" "group" {
# ...
name = "OpenNebula"
}
```

Expand Down

0 comments on commit 9ac3407

Please sign in to comment.