Skip to content

Commit 9ac3407

Browse files
committed
Bump version 1.4.0
1 parent 60850dc commit 9ac3407

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.4.0 (Unreleased)
1+
# 1.4.0 (January 22nd, 2024)
22

33
FEATURES:
44

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ If you are intereseted working on an issue, open a new Pull Request as _Draft_ a
100100

101101
### Stale Issues and Pull Requests
102102

103-
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.
103+
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.
104104

105105
### Quality
106106

Diff for: README.md

+13-11
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,27 @@
2323

2424
## Example usage
2525

26-
Configure the OpenNebula Provider:
27-
2826
```hcl
29-
provider "opennebula" {
30-
endpoint = "<ENDPOINT URL>"
31-
flow_endpoint = "<FLOW ENDPOINT URL>"
32-
username = "<USERNAME>"
33-
password = "<PASSWORD OR TOKEN>"
27+
terraform {
28+
required_providers {
29+
opennebula = {
30+
source = "OpenNebula/opennebula"
31+
version = "~> 1.4"
32+
}
33+
}
3434
}
35-
```
3635
37-
Create OpenNebula resources:
36+
provider "opennebula" {
37+
endpoint = "https://example.com:2633/RPC2"
38+
}
3839
39-
```hcl
4040
resource "opennebula_group" "group" {
41-
# ...
41+
name = "OpenNebula"
4242
}
4343
```
4444

45+
More details [here](./website/docs/index.html.markdown).
46+
4547
## OpenNebula versions support
4648

4749
* `~> 6.8`

Diff for: website/docs/index.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020
required_providers {
2121
opennebula = {
2222
source = "OpenNebula/opennebula"
23-
version = "~> 1.3"
23+
version = "~> 1.4"
2424
}
2525
}
2626
}
@@ -30,7 +30,7 @@ provider "opennebula" {
3030
}
3131
3232
resource "opennebula_group" "group" {
33-
# ...
33+
name = "OpenNebula"
3434
}
3535
```
3636

0 commit comments

Comments
 (0)