Skip to content

Commit

Permalink
Added Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed May 8, 2020
1 parent 0e71495 commit a86d34b
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2020-05-08
### Added
- Support for Carthage and Swift Package Manager.

## [0.1.0] - 2020-05-08
### Added
- Initial release.
2 changes: 2 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// swift-tools-version:5.1
import PackageDescription

let package = Package(
name: "Hyperconnectivity",
platforms: [
.iOS("13.0")
],
products: [
.library(
name: "Hyperconnectivity",
targets: ["Hyperconnectivity"]
)
],
targets: [
.target(
name: "Hyperconnectivity",
path: "Hyperconnectivity/Classes"
)
]
)

0 comments on commit a86d34b

Please sign in to comment.