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

Commit

Permalink
bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Contento committed Nov 19, 2015
1 parent 1e4a446 commit a1717a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ first argument on the command line (`$ circleci-matrix my-config.yml`).
Now you're ready to execute it with:

$ circleci-matrix
circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 1
circleci node index: 0

Expand Down Expand Up @@ -80,7 +80,7 @@ following example where I set `CIRCLE_NODE_TOTAL`and `CIRCLE_NODE_INDEX`
manually first to `2` and `0`, then to `2` and `1` to simulate two containers:

$ CIRCLE_NODE_TOTAL=2 CIRCLE_NODE_INDEX=0 circle-matrix
circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 2
circleci node index: 0

Expand All @@ -97,7 +97,7 @@ manually first to `2` and `0`, then to `2` and `1` to simulate two containers:
Version is 4.1

$ CIRCLE_NODE_TOTAL=2 CIRCLE_NODE_INDEX=1 circle-matrix
circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 2
circleci node index: 1

Expand All @@ -117,7 +117,7 @@ And here is the output when circleci runs our circle.yml file with 3 containers

Container 0 we see `VERSION=5.0` and `Version=4.0`:

circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 3
circleci node index: 0

Expand All @@ -135,7 +135,7 @@ Container 0 we see `VERSION=5.0` and `Version=4.0`:

Container 1 we see `VERSION=4.2`:

circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 3
circleci node index: 1

Expand All @@ -147,7 +147,7 @@ Container 1 we see `VERSION=4.2`:

Container 2 we see `VERSION=4.1`:

circleci-matrix version: 0.1.0
circleci-matrix version: 0.2.0
circleci node total: 3
circleci node index: 2

Expand Down
2 changes: 1 addition & 1 deletion src/circleci-matrix.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e

VERSION="0.1.0"
VERSION="0.2.0"
CONFIG_FILE=${1:-.circleci-matrix.yml}

# Ensure sane defaults
Expand Down

0 comments on commit a1717a0

Please sign in to comment.