Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
release: remove single quotes in code blocks (Pygments bug)
Browse files Browse the repository at this point in the history
This is needed because the Pygments lexer (used by Sphinx) has a bug and
fails to parse the code blocks that use quotes, it doesn't matter if
they arejust in comments.

Pygments issue: pygments/pygments#1598
  • Loading branch information
j1elo committed Nov 10, 2020
1 parent 99c9e6a commit d368202
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions source/dev/release.rst
Expand Up @@ -913,7 +913,7 @@ Release steps
# Set the final release version in project and dependencies
if [[ "$PROJECT" == "kurento-qa-pom" ]]; then
# Update project's own version.
# Update project version.
mvn versions:set \
-DgenerateBackupPoms=false \
-DnewVersion="$NEW_VERSION" \
Expand All @@ -925,7 +925,7 @@ Release steps
-DgenerateBackupPoms=false \
|| { echo "ERROR: Command failed: versions:update-parent"; return 5; }
# Update project's own version.
# Update project version.
mvn versions:set \
-DgenerateBackupPoms=false \
-DnewVersion="$NEW_VERSION" \
Expand All @@ -951,9 +951,9 @@ Release steps
-DgenerateBackupPoms=false \
|| { echo "ERROR: Command failed: versions:update-parent"; return 8; }
# Project's own version is inherited from parent.
# Project version is inherited from parent.
# Update project's children versions.
# Update children versions.
mvn versions:update-child-modules \
-DgenerateBackupPoms=false \
|| { echo "ERROR: Command failed: mvn versions:update-child-modules"; return 9; }
Expand All @@ -964,7 +964,7 @@ Release steps
-DgenerateBackupPoms=false \
|| { echo "ERROR: Command failed: mvn versions:update-parent"; return 10; }
# Update project's children versions.
# Update children versions.
mvn versions:update-child-modules \
-DgenerateBackupPoms=false \
|| { echo "ERROR: Command failed: mvn versions:update-child-modules"; return 11; }
Expand All @@ -979,7 +979,7 @@ Release steps
# Install the project.
# * Build and run tests.
# * Don't use `-U` because for each project we want Maven to find
# * Do not use `-U` because for each project we want Maven to find
# the locally installed artifacts from previous "$PROJECTS".
mvn clean install -Dmaven.test.skip=false -Pkurento-release \
|| { echo "ERROR: Command failed: mvn clean install"; return 13; }
Expand Down Expand Up @@ -1083,7 +1083,7 @@ Release steps
# Set the next development version in project and dependencies
if [[ "$PROJECT" == "kurento-qa-pom" ]]; then
# Update project's own version.
# Update project version.
mvn versions:set \
-DgenerateBackupPoms=false \
-DnewVersion="$NEW_VERSION" \
Expand All @@ -1096,7 +1096,7 @@ Release steps
-DallowSnapshots=true \
|| { echo "ERROR: Command failed: versions:update-parent"; return 3; }
# Update project's own version.
# Update project version.
mvn versions:set \
-DgenerateBackupPoms=false \
-DnewVersion="$NEW_VERSION" \
Expand All @@ -1123,9 +1123,9 @@ Release steps
-DallowSnapshots=true \
|| { echo "ERROR: Command failed: versions:update-parent"; return 6; }
# Project's own version is inherited from parent.
# Project version is inherited from parent.
# Update project's children versions.
# Update children versions.
mvn versions:update-child-modules \
-DgenerateBackupPoms=false \
-DallowSnapshots=true \
Expand Down

0 comments on commit d368202

Please sign in to comment.