diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f87ce..4eadb20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## HEAD +## 7.0.0 + - Changed: Shell commands now run under `bash -eo pipefail` instead of `/bin/sh`. This surfaces failures in pipelines and compound commands that were previously swallowed. See the README for details on SIGPIPE interactions. ## 6.0.0 diff --git a/lib/rundoc/version.rb b/lib/rundoc/version.rb index d1756b3..3487163 100644 --- a/lib/rundoc/version.rb +++ b/lib/rundoc/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Rundoc - VERSION = "6.0.0" + VERSION = "7.0.0" end