Skip to content

Commit 4de8420

Browse files
committed
feat(version): bump to 1.2.0, update changelog and roadmap
1 parent 7568ad2 commit 4de8420

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [v1.2.0](https://github.com/olets/zsh-test-runner/compare/v1.1.1...v1.2.0) (2021-09-24)
2+
3+
### Features
4+
5+
- **completions:** add new + support in plugin use ([3eaa542](https://github.com/olets/zsh-test-runner/commit/3eaa542d4d7541336b21361ed2c9e3dccd6ae8ee))
6+
- **results:** counts are in an associate array ZTR_RESULTS ([e5f7969](https://github.com/olets/zsh-test-runner/commit/e5f796960bfab58e69e540f674c390d8ed8cf6d6))
7+
- **skip, summary, test:** no color codes if NO_COLOR is declared ([b273bee](https://github.com/olets/zsh-test-runner/commit/b273beee52a4b364456fd133d5128338f74b9d27))
8+
- **color:** more reliable respect for NO_COLOR ([7dc7682](https://github.com/olets/zsh-test-runner/commit/7dc76827203587c5b92fedebb2f5863406bed5f7))
9+
- **test:** support emulation modes ([035b0c2](https://github.com/olets/zsh-test-runner/commit/035b0c256641d0b1f1776da06330f22954b4d6f5))
10+
- **test:** warn if non-zsh emulation mode used ([a7e779e](https://github.com/olets/zsh-test-runner/commit/a7e779e7d75e4953f2e3e42aff2f4f78167f2896))
11+
- **test:** --quiet-emulate flag silences emulation warning ([7318a1d](https://github.com/olets/zsh-test-runner/commit/7318a1d9198a539ae669fb2ad9273423cefabe9e))
12+
113
# [v1.1.1](https://github.com/olets/zsh-test-runner/compare/v1.1.1...v) (2021-03-28)
214

315
### Features

ROADMAP.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
## Done, not yet released
44

5-
- [x] CLI completion definitions
6-
- [x] No $reset_color color codes in output if NO_COLOR is enabled
7-
- [x] Tests for emulation
8-
95
## Next
106

117
### Functions automatically run with every test

man/man1/ztr.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "ZTR" 1 "March 28 2021" "ztr 1.1.1" "User Commands"
1+
.TH "ZTR" 1 "September 23 2021" "ztr 1.2.0" "User Commands"
22
.SH NAME
33
ztr \- zsh test runner
44

ztr.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typeset -g __ztr_dir && \
1111
__ztr_dir=${0:A:h}
1212

1313
typeset -g +r ZTR_VERSION >/dev/null && \
14-
ZTR_VERSION=1.1.1 && \
14+
ZTR_VERSION=1.2.0 && \
1515
typeset -gr ZTR_VERSION
1616

1717
__ztr_clear() { # Clear counts.

0 commit comments

Comments
 (0)