diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 9427d1ef8c4..12e19108ab2 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,5 +1,34 @@ # CHANGELOG +## 0.41.0 + +* __Casks__ + - 9 Casks added (286 updated) by 22 contributors since 0.40.0 + - 1864 total Casks +* __Features__ + - [#6120][] new DSL form `container :nested => ` +* __Breaking Changes__ + - none +* __Fixes__ + - [#6118][] bug: fix `container :type => ` + - [#6116][] Add doubledash to `mkdir` command + - [#6121][] error messages for new stanza `pkg` +* __Internal Changes__ + - [#6115][] update test suite for `postflight` and `preflight` DSL forms + - [#6073][] updates to release process after v0.40.0 +* __Documentation__ + - 7 doc commits since 0.40.0 +* __Contributors__ + - 6 new contributors since 0.40.0 + - 1010 total contributors + +[#6073]: https://github.com/caskroom/homebrew-cask/issues/6073 +[#6115]: https://github.com/caskroom/homebrew-cask/issues/6115 +[#6116]: https://github.com/caskroom/homebrew-cask/issues/6116 +[#6118]: https://github.com/caskroom/homebrew-cask/issues/6118 +[#6120]: https://github.com/caskroom/homebrew-cask/issues/6120 +[#6121]: https://github.com/caskroom/homebrew-cask/issues/6121 + ## 0.40.0 * __Casks__ diff --git a/doc/man/brew-cask.1 b/doc/man/brew-cask.1 index f397666f736..f62d7823bc4 100644 --- a/doc/man/brew-cask.1 +++ b/doc/man/brew-cask.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "HOMEBREW\-CASK" "1" "August 2014" "Homebrew-cask" "brew-cask" +.TH "HOMEBREW\-CASK" "1" "September 2014" "Homebrew-cask" "brew-cask" . .SH "NAME" \fBhomebrew\-cask\fR \- A friendly binary installer for OS X @@ -86,8 +86,8 @@ Install \fICask\fR\. \fICask\fR is usually the name of a Cask as returned by \fBbrew cask search\fR, but see \fIOTHER WAYS TO SPECIFY A CASK\fR for variations\. . .TP -\fBlist\fR or \fBls\fR [\-1] [\fICasks\fR] -Without any arguments, list all installed Casks\. With \fB\-1\fR, always format the output in a single column\. +\fBlist\fR or \fBls\fR [\-1 | \-l] [\fICasks\fR] +Without any arguments, list all installed Casks\. With \fB\-1\fR, always format the output in a single column\. With \fB\-l\fR, give a more detailed listing\. . .IP If \fICasks\fR are given, list the installed files for \fICasks\fR\. diff --git a/lib/cask/version.rb b/lib/cask/version.rb index aa641237769..fe1a5afa598 100644 --- a/lib/cask/version.rb +++ b/lib/cask/version.rb @@ -1 +1 @@ -HOMEBREW_CASK_VERSION = '0.40.0' +HOMEBREW_CASK_VERSION = '0.41.0'