Skip to content

Commit

Permalink
Merge branch 'release/0.9.4'
Browse files Browse the repository at this point in the history
Loïc GRIFFIE committed Jan 22, 2020

Verified

This commit was signed with the committer’s verified signature.
florianduros Florian Duros
2 parents 299f85c + 94779ff commit f5255c3
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gormsson.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Gormsson'
s.version = '0.9.3'
s.version = '0.9.4'
s.license = 'MIT'
s.summary = 'Gormsson is a framework that expose reusable components.'
s.description = <<-DESC
4 changes: 2 additions & 2 deletions Gormsson/Gormsson.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -694,7 +694,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.9.3;
MARKETING_VERSION = 0.9.4;
PRODUCT_BUNDLE_IDENTIFIER = com.surfin.Gormsson;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -724,7 +724,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.9.3;
MARKETING_VERSION = 0.9.4;
PRODUCT_BUNDLE_IDENTIFIER = com.surfin.Gormsson;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
7 changes: 5 additions & 2 deletions Gormsson/Source/Delegate/CentralManager.swift
Original file line number Diff line number Diff line change
@@ -315,8 +315,11 @@ internal final class CentralManager: NSObject {
for: cbCharacteristic,
type: type)

if type == .withResponse {
currentRequests.append(request)
guard type == .withResponse else {
request.result?(.success(Empty()))
return
}

currentRequests.append(request)
}
}

0 comments on commit f5255c3

Please sign in to comment.