Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6a7c269

Browse files
author
Rogerio de Paula Assis
committedNov 15, 2019
Xcode 10.2.1
1 parent 1022679 commit 6a7c269

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed
 

‎.circleci/config.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ jobs:
66
BUNDLE_PATH: vendor/bundle
77
FL_OUTPUT_DIR: output
88
macos:
9-
xcode: "10.2.0"
9+
xcode: "10.2.1"
1010
working_directory: ~/VimeoNetworking
1111
shell: /bin/bash --login -o pipefail
12-
12+
1313
steps:
1414
- checkout
15-
15+
1616
- restore_cache:
1717
key: v1-gems-{{ checksum "Gemfile.lock" }}
1818

19-
- run:
19+
- run:
2020
name: Set Ruby version
2121
command: echo "ruby-2.4" > ~/.ruby-version
2222

23-
- run:
23+
- run:
2424
name: Install bundler dependencies
2525
command: bundle install --path vendor/bundle
2626

27-
- run:
27+
- run:
2828
name: Build and run iOS tests
2929
command: bundle exec fastlane ios test
3030
environment:
@@ -47,4 +47,3 @@ workflows:
4747
build:
4848
jobs:
4949
- build-and-test
50-

‎VimeoNetworking.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "VimeoNetworking"
4-
s.version = "4.0.0"
4+
s.version = "4.1.0"
55
s.summary = "A library for interacting with the Vimeo API."
66
s.description = "An iOS/tvOS library for interacting with the Vimeo API."
77
s.homepage = "https://github.com/vimeo/VimeoNetworking"

‎fastlane/Fastfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ default_platform :ios
1717

1818
platform :ios do
1919
before_all do
20-
ensure_xcode_version(version: "10.2.0")
20+
ensure_xcode_version(version: "10.2.1")
2121
end
2222

2323
desc "buid the example project"
2424
lane :build_example do |options|
25-
25+
2626
# cant use gym: https://github.com/fastlane/fastlane/issues/1816
2727
xcodebuild(
2828
workspace: "VimeoNetworking.xcworkspace",
@@ -60,12 +60,12 @@ platform :ios do
6060
end
6161

6262
desc "bumps the project and podspec version"
63-
lane :version_bump do |options|
63+
lane :version_bump do |options|
6464

6565
bump_type = options[:bump_type]
6666
version_number = options[:version_number]
6767
if bump_type.nil? && version_number.nil?
68-
UI.user_error!("version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again.")
68+
UI.user_error!("version_bump requires you to provide a bump_type [patch|minor|major] or specific version_number. Please try again.")
6969
end
7070

7171
increment_version_number(
@@ -82,11 +82,11 @@ platform :ios do
8282

8383

8484
after_all do |lane|
85-
85+
8686
end
8787

8888
error do |lane, exception|
89-
89+
9090
end
9191
end
9292

0 commit comments

Comments
 (0)
This repository has been archived.