Browse Source

feat(ng): promote NG formula

* Trigger `v1.0.0` to complete #183

BREAKING CHANGE: all previous `php` based configurations must be reviewed;
`php.ng` usage must be promoted to `php` and any uses of the original
`php` will have to be converted.
tags/v1.0.0
Imran Iqbal 5 years ago
parent
commit
57b37dd32b
No account linked to committer's email address
2 changed files with 2 additions and 13 deletions
  1. +2
    -2
      docs/README.rst
  2. +0
    -11
      pre-commit_semantic-release.sh

+ 2
- 2
docs/README.rst View File

@@ -33,7 +33,7 @@ Formula to set up and configure php
release tag before
`v1.0.0 <https://github.com/saltstack-formulas/php-formula/releases/tag/v1.0.0>`_,
i.e.
`v0.41.1 <https://github.com/saltstack-formulas/php-formula/releases/tag/v0.41.1>`_.
`v0.40.1 <https://github.com/saltstack-formulas/php-formula/releases/tag/v0.40.1>`_.

To migrate from ``php.ng``, simply modify your pillar to promote the
entire section under ``php:ng`` so that it is under ``php`` instead.
@@ -41,7 +41,7 @@ Formula to set up and configure php
unindent one level. Finish by removing the ``ng:`` line.

To migrate from the old ``php``, first convert to ``php.ng`` under
`v0.41.1 <https://github.com/saltstack-formulas/php-formula/releases/tag/v0.41.1>`_.
`v0.40.1 <https://github.com/saltstack-formulas/php-formula/releases/tag/v0.40.1>`_.
and then follow the steps laid out in the paragraph directly above.

.. contents:: **Table of Contents**

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

@@ -28,14 +28,3 @@ 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
fi

Loading…
Cancel
Save