File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new  do  |s |
22
33  s . name          =  "IDZSwiftCommonCrypto" 
4-   s . version       =  "0.16.0 " 
4+   s . version       =  "0.16.1 " 
55  s . summary       =  "A wrapper for Apple's Common Crypto library written in Swift." 
66
77  s . homepage      =  "https://github.com/iosdevzone/IDZSwiftCommonCrypto" 
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public func arrayFrom(string : String) -> [UInt8]
9494public  func  dataFrom( hexString:  String )  ->  Data 
9595{ 
9696    let  a  =  arrayFrom ( hexString:  hexString) 
97-     return  Data ( bytes :   UnsafePointer < UInt8 > ( a ) ,  count : a . count ) 
97+     return  Data ( a ) 
9898} 
9999
100100///
@@ -105,7 +105,7 @@ public func dataFrom(hexString: String) -> Data
105105///
106106public  func  dataFrom( byteArray :  [ UInt8 ] )  ->  Data 
107107{ 
108-     return  Data ( bytes :   UnsafePointer < UInt8 > ( byteArray) ,  count : byteArray . count ) 
108+     return  Data ( byteArray) 
109109} 
110110
111111///
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ clean:
3939push_tags :
4040	git push origin --tags
4141
42+ #  Lint the pod locally
43+ lint_lib :
44+ 	pod lib lint --verbose ${NAME} .podspec --sources=https://github.com/iosdevzone/IDZPodspecs.git
45+ 
4246#  Lint the podspec
4347lint_pod :
4448	pod spec lint --verbose ${NAME} .podspec --sources=https://github.com/iosdevzone/IDZPodspecs.git
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments