Pinned dep versions

This commit is contained in:
Kyle Jessup 2016-09-06 16:07:30 -04:00
parent 73d81be276
commit 057122668b
2 changed files with 21 additions and 2 deletions

View File

@ -1 +1 @@
DEVELOPMENT-SNAPSHOT-2016-08-18-a
DEVELOPMENT-SNAPSHOT-2016-09-05-a

View File

@ -1,3 +1,22 @@
//
// Package.swift
// PerfectMustache
//
// 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"]
@ -5,6 +24,6 @@ let urls = ["https://github.com/PerfectlySoft/Perfect-HTTP.git"]
let package = Package(
name: "PerfectMustache",
targets: [],
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: []
)