summaryrefslogtreecommitdiff
path: root/docs-src
diff options
context:
space:
mode:
authorhairyhenderson-bot[bot] <167488603+hairyhenderson-bot[bot]@users.noreply.github.com>2024-07-06 10:01:48 -0400
committerGitHub <noreply@github.com>2024-07-06 10:01:48 -0400
commitcc2584028866967a39b096265d5b9af4516c734f (patch)
treeff7256dfba9f77d1cdd4f540d6406eb9747b0e66 /docs-src
parentbdf3a1eb92020a0d1ce202df14b49f2f13445476 (diff)
chore(main): release 4.1.0 (#2153)
* chore(main): release 4.1.0 * docs: mark new strings funcs as released Signed-off-by: Dave Henderson <dhenderson@gmail.com> --------- Signed-off-by: Dave Henderson <dhenderson@gmail.com> Co-authored-by: hairyhenderson-bot[bot] <167488603+hairyhenderson-bot[bot]@users.noreply.github.com> Co-authored-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src')
-rw-r--r--docs-src/content/functions/strings.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs-src/content/functions/strings.yml b/docs-src/content/functions/strings.yml
index 8c10a8f5..c4388e21 100644
--- a/docs-src/content/functions/strings.yml
+++ b/docs-src/content/functions/strings.yml
@@ -422,7 +422,7 @@ funcs:
$ gomplate -i '{{ "_-foo-_" | strings.Trim "_-" }}'
foo
- name: strings.TrimLeft
- # released: v4.1.0
+ released: v4.1.0
description: |
Trims a string by removing the given characters from the beginning of the string.
This wraps Go's [`strings.TrimLeft`](https://pkg.go.dev/strings#TrimLeft).
@@ -457,7 +457,7 @@ funcs:
$ gomplate -i '{{ "hello, world" | strings.TrimPrefix "hello, " }}'
world
- name: strings.TrimRight
- # released: v4.1.0
+ released: v4.1.0
description: |
Trims a string by removing the given characters from the end of the string.
This wraps Go's [`strings.TrimRight`](https://pkg.go.dev/strings#TrimRight).