Skip to content
This repository has been archived by the owner on Jan 14, 2018. It is now read-only.

Releases: semantic-release/condition-codeship

v1.1.0

07 Jan 19:31
Compare
Choose a tag to compare

<a name"1.1.0">

1.1.0 (2016-01-07)

Features

  • helpful error output for git tag (c54408a3, closes #1)

v1.0.0

07 Jan 13:16
Compare
Choose a tag to compare

<a name"1.0.0">

1.0.0 (2016-01-07)

Bug Fixes

  • make error messages meaningful (16dffd64)
  • condition-travis:
    • use correct BUILD_MINION variable (38574e8c)
    • account for boolean env vars being strings (3c5f4c14)

Features

  • initial implementation (5f24a60c)
  • migrate from travis_after_all to travis-after-all (a5b922df)
  • new function signature (afe528d5)
  • initial (61541a86)
  • condition-travis: tries to delete travis_after_all artifacts (8cb72071)

Breaking Changes

  • If you run travis_after_all and travis-after-all at the same
    time they'll keep waiting for each other until forever. You have to apply
    this patch to your .travis.yml.
---
 .travis.yml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index a5fbddb..c76091b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,9 +14,6 @@ before_install:
 - npm i -g npm@^2.0.0
 before_script:
 - npm prune
-- curl -Lo travis_after_all.py https://git.io/vLSON
 after_success:
-- python travis_after_all.py
-- export $(cat .to_export_back)
 - npm run semantic-release
--

(dc3320b6)

  • old one doesn't work anymore

    (afe528d5)

  • Doesn't work with BUILD_LEADER=NO any longer.

    (38574e8c)

  • only works with stringified env values

    (3c5f4c14)