Skip to content

Commit

Permalink
Pinned dep versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kjessup committed Sep 6, 2016
1 parent c119bbc commit 304c8c0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEVELOPMENT-SNAPSHOT-2016-08-18-a
DEVELOPMENT-SNAPSHOT-2016-09-05-a
21 changes: 20 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
//
// Package.swift
// PerfectHTTPServer
//
// Created by Kyle Jessup on 2016-05-02.
// Copyright (C) 2016 PerfectlySoft, Inc.
//
//===----------------------------------------------------------------------===//
//
// This source file is part of the Perfect.org open source project
//
// Copyright (c) 2015 - 2016 PerfectlySoft Inc. and the Perfect project authors
// Licensed under Apache License v2.0
//
// See http://perfect.org/licensing.html for license information
//
//===----------------------------------------------------------------------===//
//

import PackageDescription

let urls = ["https://github.com/PerfectlySoft/Perfect-HTTP.git"]
Expand All @@ -8,6 +27,6 @@ let package = Package(
Target(name: "CHTTPParser", dependencies: []),
Target(name: "PerfectHTTPServer", dependencies: ["CHTTPParser"])
],
dependencies: urls.map { .Package(url: $0, versions: Version(0,0,0)..<Version(10,0,0)) },
dependencies: urls.map { .Package(url: $0, majorVersion: 2, minor: 0) },
exclude: []
)

0 comments on commit 304c8c0

Please sign in to comment.