Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Prepare for 1.2.0 #377

Merged
merged 3 commits into from
Jan 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ branches:
- /.+-stable$/

install:
- gem install bundler
- gem install danger
- danger
- rake app:prerequisites --quiet
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Master

## [1.2.0](https://github.com/CocoaPods/CocoaPods-app/releases/tag/1.2.0)
[CocoaPods](https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md)

* Fix for loading the gh-inspector inside the ruby helper process, which should fix a lot of underlying UI issues
[orta](https://github.com/orta)
[#377](https://github.com/CocoaPods/CocoaPods-app/pull/377)

## [1.1.0](https://github.com/CocoaPods/CocoaPods-app/releases/tag/1.1.0)
[CocoaPods](https://github.com/CocoaPods/CocoaPods/blob/master/CHANGELOG.md)

* Pod version completion
[flufff42](https://github.com/flufff42)
[#313](https://github.com/CocoaPods/CocoaPods-app/pull/313)
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ LIBYAML_VERSION = '0.1.6'
LIBYAML_URL = "http://pyyaml.org/download/libyaml/yaml-#{LIBYAML_VERSION}.tar.gz"

ZLIB_VERSION = '1.2.8'
ZLIB_URL = "http://zlib.net/zlib-#{ZLIB_VERSION}.tar.gz"
ZLIB_URL = "http://zlib.net/fossils/zlib-#{ZLIB_VERSION}.tar.gz"

OPENSSL_VERSION = '1.0.2'
OPENSSL_PATCH = 'd'
Expand Down
6 changes: 3 additions & 3 deletions app/CPReflectionService/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.1.1</string>
<string>1.2.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 CocoaPods. All rights reserved.</string>
<string>Copyright © 2017 CocoaPods. All rights reserved.</string>
<key>XPCService</key>
<dict>
<key>ServiceType</key>
Expand Down
1 change: 1 addition & 0 deletions app/CPReflectionService/RBObject+CocoaPods.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
INIT_EXT(utf_16be);
INIT_EXT(utf_32le);
INIT_EXT(utf_32be);
INIT_EXT(windows_31j);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #376


INIT_EXT(pathname);
rb_provide("pathname.so");
Expand Down
2 changes: 1 addition & 1 deletion app/CocoaPods.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@
510254301C0A60680045FCD8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "";
CODE_SIGN_IDENTITY = "Developer ID Application";
COMBINE_HIDPI_IMAGES = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
FRAMEWORK_SEARCH_PATHS = (
Expand Down
6 changes: 3 additions & 3 deletions app/CocoaPods/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -73,11 +73,11 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.1.1</string>
<string>1.2.0</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 CocoaPods. All rights reserved.</string>
<string>Copyright © 2017 CocoaPods. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Expand Down