Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Benko committed Jun 10, 2014
1 parent 83fb612 commit 569fc07
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# ObjectiveTLS CHANGELOG

## 0.1.0

Initial release.
24 changes: 24 additions & 0 deletions ObjectiveTLS.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ObjectiveTLS"
s.version = File.read('VERSION')
s.summary = "Encryption for data in transit; ObjectiveTLS will secure data for transit similar to the handshake protocol of TLS."
s.description = <<-DESC
Transport Layer Security for securing data payloads in Objective-C. An easy way to secure data by providing a symmetric key for that transaction. Keys are generated on the fly and every message will have a new key.
DESC
s.homepage = "https://github.com/DavidBenko/Objective-TLS"
s.license = 'MIT'
s.author = { "David Benko" => "[email protected]" }
s.source = { :git => "https://github.com/DavidBenko/Objective-TLS.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/davidwbenko'

s.platform = :ios
s.requires_arc = true

s.source_files = 'ObjectiveTLS'
end
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0

0 comments on commit 569fc07

Please sign in to comment.