Skip to content

Commit

Permalink
Merge branch 'master' into swift-2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
p2 committed Sep 16, 2016
2 parents 464e439 + ac74ad0 commit aaf4507
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Changelog
- Update for Swift 2.3


## 2.2.4

- Support resolving bundled references
- Some logging improvements


## 2.2.3

- Address deprecation warnings appearing with Swift 2.2 (now requires Swift 2.2)
Expand Down
2 changes: 1 addition & 1 deletion SMART.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|
s.name = "SMART"
s.version = "2.3"
s.version = "2.3.0"
s.summary = "Swift SMART on FHIR framework for iOS and OS X"
s.description = <<-DESC
Swift SMART on FHIR framework for iOS and OS X.
Expand Down
5 changes: 4 additions & 1 deletion Sources/Client/Auth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ class Auth {
/// The authentication object, used internally.
var oauth: OAuth2? {
didSet {
if nil == server.logger, let logger = oauth?.logger {
if let logger = server.logger {
oauth?.logger = logger
}
else if let logger = oauth?.logger {
server.logger = logger
}
}
Expand Down
2 changes: 1 addition & 1 deletion Swift-FHIR
Submodule Swift-FHIR updated 1 files
+1 −1 generate-docs.sh
2 changes: 2 additions & 0 deletions SwiftSMART.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@
EEF47D371B1E483A0057D838 /* OAuth2Base.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEF47D341B1E483A0057D838 /* OAuth2Base.swift */; };
EEF47D381B1E483A0057D838 /* OAuth2DynReg.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEF47D351B1E483A0057D838 /* OAuth2DynReg.swift */; };
EEF47D391B1E483A0057D838 /* OAuth2DynReg.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEF47D351B1E483A0057D838 /* OAuth2DynReg.swift */; };
EEF7BC3C1D465FA400DCF872 /* OAuth2Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB4810B1CDBEB4F0088D7F3 /* OAuth2Logger.swift */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -1522,6 +1523,7 @@
EE56A4FB1ABB0B7900FA99EB /* AuditEvent.swift in Sources */,
EE56A5691ABB0B7900FA99EB /* Group.swift in Sources */,
EE56A56B1ABB0B7900FA99EB /* HealthcareService.swift in Sources */,
EEF7BC3C1D465FA400DCF872 /* OAuth2Logger.swift in Sources */,
EE56A53B1ABB0B7900FA99EB /* DocumentManifest.swift in Sources */,
EE02F8081ACF2FC500179969 /* Flag.swift in Sources */,
EE56A6141ABB0B9E00FA99EB /* OAuth2CodeGrant.swift in Sources */,
Expand Down
2 changes: 1 addition & 1 deletion generate-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
jazzy \
-r "http://smart-on-fhir.github.io/Swift-SMART" \
-o "docs" \
--module-version "2.2.3"
--module-version "2.3.0"

mkdir docs/assets 2>/dev/null
cp assets/banner.png docs/assets/

0 comments on commit aaf4507

Please sign in to comment.