From 6d39497ae001e09a4176c29efdcb8a296c409572 Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Tue, 3 Feb 2015 18:49:39 -0500 Subject: [PATCH] Use MIT instead of BSD MIT has the same terms as BSD, but it is less ambiguous compared to the 3+ variants of BSD. --- src/nimble.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nimble.nim b/src/nimble.nim index 3298e7c..c6e53e8 100644 --- a/src/nimble.nim +++ b/src/nimble.nim @@ -769,7 +769,7 @@ proc init(options: Options) = outFile.writeln("version = \"0.1.0\"") outFile.writeln("author = \"Anonymous\"") outFile.writeln("description = \"New Nimble project for Nim\"") - outFile.writeln("license = \"BSD\"") + outFile.writeln("license = \"MIT\"") outFile.writeln("") outFile.writeln("[Deps]") outFile.writeln("Requires: \"nim >= 0.10.0\"")