Browse Source

Merge pull request #187 from myii/chore/standardise-structure

fix: update deprecation version number in `semantic-release` run
tags/v0.38.1
Imran Iqbal 5 years ago
parent
commit
8902d8b8ff
No account linked to committer's email address
2 changed files with 14 additions and 1 deletions
  1. +13
    -0
      pre-commit_semantic-release.sh
  2. +1
    -1
      release.config.js

+ 13
- 0
pre-commit_semantic-release.sh View File

@@ -28,3 +28,16 @@ sed -i -e '1,4s/-/=/g' CHANGELOG.rst

# Return back to the main directory
cd ..


###############################################################################
# (C) Update last version before `v1.0.0` with `${nextRelease.version}`
###############################################################################
# Only apply this while the version number is below `v1.0.0`!
V_REPR=v${1}
MAJOR=$(echo ${V_REPR} | cut -c-2)
if [ ${MAJOR} = "v0" ]; then
sed -i -e "s@^\(\s\+\`\).*\(\s<https://github.com/saltstack-formulas/php-formula/releases/tag/\).*\(>\`_\.\)@\1${V_REPR}\2${V_REPR}\3@" docs/README.rst
sed -i -e "s@^\(\s\+# the final release tag before \`v1.0.0\`, which is expected to be \`\).*\(\`.\s\+#\)@\1${V_REPR}\2@" php/deprecated.sls
sed -i -e "s@^\(\s\+# the final release tag before \`v1.0.0\`, which is expected to be \`\).*\(\`.\s\+#\)@\1${V_REPR}\2@" php/ng/deprecated.sls
fi

+ 1
- 1
release.config.js View File

@@ -14,7 +14,7 @@ module.exports = {
prepareCmd: 'sh ./pre-commit_semantic-release.sh ${nextRelease.version}',
}],
['@semantic-release/git', {
assets: ['*.md', 'docs/*.rst', 'FORMULA'],
assets: ['*.md', 'docs/*.rst', 'FORMULA', 'php/deprecated.sls', 'php/ng/deprecated.sls'],
}],
'@semantic-release/github',
],

Loading…
Cancel
Save