summaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'tasks')
-rw-r--r--tasks/rake/changlog.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rake/changlog.rake b/tasks/rake/changlog.rake
index adeeb03..0c2f1d2 100644
--- a/tasks/rake/changlog.rake
+++ b/tasks/rake/changlog.rake
@@ -8,7 +8,7 @@ task :changelog do
CHANGELOG_DIR = "#{Dir.pwd}"
mkdir(CHANGELOG_DIR) unless File.directory?(CHANGELOG_DIR)
- change_body = `git-changelog --no-limit -a`
+ change_body = `git-changelog --limit=99999`
File.open(File.join(CHANGELOG_DIR, "CHANGELOG"), 'w') do |f|
f << change_body
end