Rakefile in pkg-config-1.0.2 vs Rakefile in pkg-config-1.0.3
- old
+ new
@@ -46,5 +46,10 @@
}
news = base_dir + "NEWS"
project.changes = news.read.split(/^== .*$/)[1].strip
project.description = "A pkg-cofnig implementation by Ruby"
end
+
+desc "tag the current veresion"
+task :tag do
+ sh("git", "tag", "-a", version.to_s, "-m", "release #{version}!!!")
+end