Skip to content

Commit 89aae34

Browse files
committed
preparing v2.2.2 release
1 parent 0f38e59 commit 89aae34

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 2.2.2 (Next)
1+
### 2.2.2
22
- Update `exp`, `mod`, and `sqrt` functions' input parameter type from `float64` to `number`.
33
- Update `sqrt` return type to `number`.
44
- Verify `round` return does not under/overflow.

docs/functions/last_char.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ last_char(string string, number_of_characters number...) string
3434
<!-- arguments generated by tfplugindocs -->
3535
1. `string` (String) Input string parameter for determining the last character.
3636
<!-- variadic argument generated by tfplugindocs -->
37-
1. `number_of_characters` (Variadic, Number) Optional: The number of terminating characters at the end of the string to return (default: 1). This must be fewer than the number of characters in the input string.
37+
1. `number_of_characters` (Variadic, Number) Optional: The number of terminating characters at the end of the string to return (default: 1). This must be less than or equal to the number of characters in the input string.

docs/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
page_title: "stdlib Provider"
33
subcategory: ""
44
description: |-
5-
The stdlib provider provides additional functions for use within Terraform's HCL2 configuration language.
5+
The stdlib provider provides additional custom functions for use within Terraform's HCL2 configuration language.
66
---
77

88
# stdlib Provider
99

10-
The stdlib provider provides additional functions for use within Terraform's HCL2 configuration language.
10+
The stdlib provider provides additional custom functions for use within Terraform's HCL2 configuration language.
1111

12-
The Terraform provider plugin "stdlib" provides additional functions for Terraform available as data sources and custom functions. These data sources and custom functions enable functionality either not intrinsically available to Terraform, or instead streamlined within a single invocation. However, data sources are not as robustly invoked with inputs or returns compared to true functions. Without the true support for custom functions in Terraform >= 1.8 then this becomes the next best available option. If you are using Terraform >= 1.8 then it is advised to use the custom functions instead of the data sources, but otherwise you will need to declare the data sources.
12+
The Terraform provider plugin "stdlib" provides additional functions for Terraform available as data sources and custom functions. These data sources and custom functions enable functionality either not intrinsically available to Terraform, or instead streamlined within a single invocation. However, data sources are not as robustly invoked with inputs or returns compared to true functions. Without the true support for custom functions in Terraform >= 1.8 then this becomes the next best available option. If you are using Terraform >= 1.8 then it is advised to use the custom functions instead of the data sources, but otherwise you will need to declare the data sources instead.
13+
14+
Please note all data sources are in maintenance mode as of release version 2.0.0.
1315

1416
Use the navigation to the left to read about the available custom functions, and the alternative data sources which are each equivalent to Terraform functions.
1517

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
func main() {
1616
// start provider server
17-
if err := providerserver.Serve(context.Background(), provider.New("2.2.1"), providerserver.ServeOpts{
17+
if err := providerserver.Serve(context.Background(), provider.New("2.2.2"), providerserver.ServeOpts{
1818
Address: "registry.terraform.io/mschuchard/stdlib",
1919
}); err != nil {
2020
log.Fatal(err)

0 commit comments

Comments
 (0)