Skip to content

Commit

Permalink
Merge pull request #6 from SomeRandomiOSDev/1.0.4
Browse files Browse the repository at this point in the history
Updated visibility of CBOREncoded field and initializer to public
  • Loading branch information
SomeRandomiOSDev authored Sep 25, 2019
2 parents 2eded02 + d7df5b2 commit 7fe3a29
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CBORCoding.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "CBORCoding"
s.version = "1.0.3"
s.version = "1.0.4"
s.summary = "A CBOR Encoder and Decoder"
s.description = <<-DESC
A lightweight framework containing a coder pair for encoding and decoding `Codable` conforming types to and from CBOR document format for iOS, macOS, tvOS, and watchOS.
Expand Down
8 changes: 7 additions & 1 deletion CBORCoding/CBOR.swift
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,13 @@ public struct CBOR {

// MARK: - Fields

let encodedData: Data
public let encodedData: Data

// MARK: - Initialization

public init(encodedData: Data) {
self.encodedData = encodedData
}
}
}

Expand Down

0 comments on commit 7fe3a29

Please sign in to comment.