From 346facbe2ff22a6d261b5c974c15eab74df56ee0 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Fri, 19 May 2017 17:05:23 -0400 Subject: [PATCH] bump version --- Rakefile.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile.rb b/Rakefile.rb index de7b6ee..b1133eb 100644 --- a/Rakefile.rb +++ b/Rakefile.rb @@ -15,7 +15,7 @@ PACKAGES = File.expand_path("packages") TOOLS = File.expand_path("tools") NUGET = File.expand_path("#{TOOLS}/nuget") NUGET_EXE = File.expand_path("#{TOOLS}/nuget/nuget.exe") -@version = "2.12.0" +@version = "2.14.0" PROJECTS = Dir.glob('src/*').select{|dir| File.directory? dir } desc 'Retrieve things' @@ -27,7 +27,6 @@ task :build => [:retrieve, :compile] desc 'clean, retrieve, build, generate nuspecs' task :preflight => [:clean, :build, :nuspec_gen] - desc 'publish' task :publish => [:preflight,:nuspec_gen, :nuspec_pack, :nuspec_publish]