about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index df813f8..edd5e8a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014, Eric Wong <e@80x24.org> and all contributors
+# Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>.
 # License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
 require 'tempfile'
 include Rake::DSL
@@ -23,8 +23,7 @@ task "NEWS" do
   end
   fp.puts "Unreleased" unless fp.size > 0
   fp.puts "# COPYRIGHT"
-  bdfl = 'Eric Wong <e@80x24.org>'
-  fp.puts "Copyright (C) 2013, #{bdfl} and all contributors"
+  fp.puts "Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>"
   fp.puts "License: GPLv3 or later (http://www.gnu.org/licenses/gpl-3.0.txt)"
   fp.rewind
   assert_equal fp.read, File.read("NEWS") rescue nil