Bump dependencies versions

This commit is contained in:
Pedro Piñera Buendía 2016-06-29 00:06:54 +02:00
parent 5bb35b2ab6
commit e331231adc
6 changed files with 14 additions and 15 deletions

View File

@ -1,3 +1,3 @@
github "ReactiveCocoa/ReactiveCocoa" "v4.1.0"
github "realm/realm-cocoa" "v0.102.1"
github "ReactiveCocoa/ReactiveCocoa" "v4.2.0"
github "realm/realm-cocoa" "v1.0.1"
github "ReactiveX/RxSwift" "2.5.0"

View File

@ -1,2 +1,2 @@
github "Quick/Quick" "v0.9.2"
github "Quick/Nimble" "v4.0.1"
github "Quick/Nimble" "v4.1.0"

View File

@ -1,6 +1,6 @@
github "Quick/Nimble" "v4.0.1"
github "Quick/Nimble" "v4.1.0"
github "Quick/Quick" "v0.9.2"
github "antitypical/Result" "2.1.0"
github "antitypical/Result" "2.1.1"
github "ReactiveX/RxSwift" "2.5.0"
github "realm/realm-cocoa" "v0.102.1"
github "ReactiveCocoa/ReactiveCocoa" "v4.1.0"
github "realm/realm-cocoa" "v1.0.1"
github "ReactiveCocoa/ReactiveCocoa" "v4.2.0"

View File

@ -1,4 +1,4 @@
MAJOR_VERSION = 2;
MINOR_VERSION = 2;
TINY_VERSION = 8;
TINY_VERSION = 9;
FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(TINY_VERSION);

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SugarRecord"
s.version = "2.2.8"
s.version = "2.2.9"
s.summary = "CoreData wrapper written on Swift"
s.homepage = "https://github.com/pepibumur/SugarRecord"
s.license = 'MIT'
@ -19,11 +19,11 @@ Pod::Spec.new do |s|
end
rac_dependencies = lambda do |spec|
spec.dependency "ReactiveCocoa", "4.1.0"
spec.dependency "ReactiveCocoa", "4.2.0"
end
realm_dependencies = lambda do |spec|
spec.dependency "RealmSwift", "~> 0.102.1"
spec.dependency "RealmSwift", "~> 1.0.1"
end
coredata_dependencies = lambda do |spec|

View File

@ -12,8 +12,7 @@ class Repository: Object {
// MARK: - Relationships
var issues: [Issue] {
return linkingObjects(Issue.self, forProperty: "repository")
}
let issues = LinkingObjects(fromType: Issue.self, property: "repository")
}