Skip to content

Commit

Permalink
Bats 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbland committed Jul 9, 2018
1 parent ad24c70 commit c706d14
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
@@ -1,4 +1,4 @@
version: 'v1.0.2.{build}'
version: 'v1.1.0.{build}'

build: off

Expand Down
20 changes: 20 additions & 0 deletions README.md
Expand Up @@ -436,6 +436,26 @@ on the wiki.

Bats is [SemVer compliant](https://semver.org/).

*1.1.0* (July 8, 2018)

This is the first release with new features relative to the original Bats 0.4.0.

Added:
* The `-r, --recursive` flag to scan directory arguments recursively for
`*.bats` files (#109)
* The `contrib/rpm/bats.spec` file to build RPMs (#111)

Changed:
* Travis exercises latest versions of Bash from 3.2 through 4.4 (#116, #117)
* Error output highlights invalid command line options (#45, #46, #118)
* Replaced `echo` with `printf` (#120)

Fixed:
* Fixed `BATS_ERROR_STATUS` getting lost when `bats_error_trap` fired multiple
times under Bash 4.2.x (#110)
* Updated `bin/bats` symlink resolution, handling the case on CentOS where
`/bin` is a symlink to `/usr/bin` (#113, #115)

*1.0.2* (June 18, 2018)

* Fixed sstephenson/bats#240, whereby `skip` messages containing parentheses
Expand Down
5 changes: 4 additions & 1 deletion contrib/rpm/bats.spec
Expand Up @@ -3,7 +3,7 @@
%global repo bats-core

Name: bats
Version: 1.0.2
Version: 1.1.0
Release: 1%{?dist}
Summary: Bash Automated Testing System

Expand Down Expand Up @@ -41,6 +41,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man7/%{name}.7.gz

%changelog
* Tue Jul 08 2018 mbland <mbland@acm.org> - 1.1.0-1
- Increase version to match upstream release

* Mon Jun 18 2018 pixdrift <support@pixeldrift.net> - 1.0.2-1
- Increase version to match upstream release
- Relocate libraries to bats-core subdirectory
Expand Down
2 changes: 1 addition & 1 deletion libexec/bats-core/bats
Expand Up @@ -2,7 +2,7 @@
set -e

version() {
printf 'Bats 1.0.2\n'
printf 'Bats 1.1.0\n'
}

usage() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "bats",
"version": "1.0.2",
"version": "1.1.0",
"description": "Bash Automated Testing System",
"homepage": "https://github.com/bats-core/bats-core#readme",
"license": "MIT",
Expand Down

0 comments on commit c706d14

Please sign in to comment.