diff options
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | MASShortcut.podspec | 28 | 
2 files changed, 17 insertions, 14 deletions
| @@ -1,3 +1,6 @@ +2.0.1 2015/1/9 +    - Trivial Podspec fix. +  2.0.0 2015/1/9      - First version with a changes file :)      - Major, backwards incompatible refactoring to simplify long-term maintenance. diff --git a/MASShortcut.podspec b/MASShortcut.podspec index 8bdf7a8..f3299c1 100644 --- a/MASShortcut.podspec +++ b/MASShortcut.podspec @@ -1,17 +1,17 @@  Pod::Spec.new do |s| -  s.name	          = 'MASShortcut' -  s.version           = '2.0.0' -  s.summary           = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store' -  s.homepage          = 'https://github.com/shpakovski/MASShortcut' -  s.license           = 'BSD 2-clause' -  s.authors           = { 'Vadim Shpakovski' => 'vadim@shpakovski.com', -                          'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' } +  s.name	              = 'MASShortcut' +  s.version               = '2.0.1' +  s.summary               = 'Modern framework for managing global keyboard shortcuts compatible with Mac App Store' +  s.homepage              = 'https://github.com/shpakovski/MASShortcut' +  s.license               = 'BSD 2-clause' +  s.authors               = { 'Vadim Shpakovski' => 'vadim@shpakovski.com', +                              'Tomáš Znamenáček' => 'tomas.znamenacek@gmail.com' } -  s.platform          = :osx -  s.deployment_target = "10.7" -  s.source            = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '2.0.0' } -  s.source_files      = 'Framework/*.{h,m}' -  s.exclude_files     = 'Framework/*Tests.m' -  s.osx.frameworks    = 'Carbon', 'AppKit' -  s.requires_arc      = true +  s.platform              = :osx +  s.osx.deployment_target = "10.7" +  s.source                = { :git => 'https://github.com/shpakovski/MASShortcut.git', :tag => '2.0.1' } +  s.source_files          = 'Framework/*.{h,m}' +  s.exclude_files         = 'Framework/*Tests.m' +  s.osx.frameworks        = 'Carbon', 'AppKit' +  s.requires_arc          = true  end | 
