Skip to content

Commit

Permalink
Bump version number to 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
p2 committed Jul 25, 2016
1 parent 1944b58 commit ac74ad0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

## 2.2.4

- Support resolving bundled references
- Some logging improvements


## 2.2.3

Expand Down
4 changes: 2 additions & 2 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.2.3</string>
<string>2.2.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.2.3.0</string>
<string>2.2.4.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
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: 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 @@ -1520,6 +1521,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.2.4"

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

0 comments on commit ac74ad0

Please sign in to comment.