Commit 5463246c authored by Andrea Mazzini's avatar Andrea Mazzini

[Config] Add environment variable COCOAPODS_SKIP_NEW_VERSION

parent fb851236
...@@ -22,6 +22,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -22,6 +22,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Samuel Giddins](https://github.com/segiddins) [Samuel Giddins](https://github.com/segiddins)
[#3101](https://github.com/CocoaPods/CocoaPods/issues/3101) [#3101](https://github.com/CocoaPods/CocoaPods/issues/3101)
* Add environment variable `COCOAPODS_SKIP_NEW_VERSION` to disable new
version message
[Andrea Mazzini](https://github.com/andreamazz)
[#3364](https://github.com/CocoaPods/CocoaPods/issues/3364)
## 0.37.0.beta.1 ## 0.37.0.beta.1
......
...@@ -19,7 +19,7 @@ module Pod ...@@ -19,7 +19,7 @@ module Pod
:clean => true, :clean => true,
:integrate_targets => true, :integrate_targets => true,
:new_version_message => true, :new_version_message => !ENV['COCOAPODS_SKIP_NEW_VERSION'].nil?,
:cache_root => Pathname.new(Dir.home) + 'Library/Caches/CocoaPods', :cache_root => Pathname.new(Dir.home) + 'Library/Caches/CocoaPods',
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment