Skip to content

Commit 82e1d12

Browse files
authored
fix: escape slashes (testcontainers#1084)
Undesired stash/unstash while commiting testcontainers#1081
1 parent 33ed356 commit 82e1d12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ function bumpVersion() {
106106
cd "${ROOT_DIR}/docs/modules"
107107

108108
versionEscapingDots="${versionToBumpWithoutV/./\.}"
109-
NON_RELEASED_STRING='Not available until the next release of testcontainers-go <a href=\"https://github.com/testcontainers/testcontainers-go\"><span class=\"tc-version\">:material-tag: main<\/span></a>'
110-
RELEASED_STRING="Since testcontainers-go <a href=\\\"https://github.com/testcontainers/testcontainers-go/releases/tag/v${versionEscapingDots}\\\"><span class=\\\"tc-version\\\">:material-tag: v${versionEscapingDots}<\/span></a>"
109+
NON_RELEASED_STRING='Not available until the next release of testcontainers-go <a href=\"https:\/\/github.com\/testcontainers\/testcontainers-go\"><span class=\"tc-version\">:material-tag: main<\/span><\/a>'
110+
RELEASED_STRING="Since testcontainers-go <a href=\\\"https:\/\/github.com\/testcontainers\/testcontainers-go\/releases\/tag\/v${versionEscapingDots}\\\"><span class=\\\"tc-version\\\">:material-tag: v${versionEscapingDots}<\/span><\/a>"
111111

112112
ls | grep -v "index.md" | while read -r module_file; do
113113
if [[ "${DRY_RUN}" == "true" ]]; then

0 commit comments

Comments
 (0)