diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee
index 2426aa1a..e6605e17 100644
--- a/assets/javascripts/templates/pages/about_tmpl.coffee
+++ b/assets/javascripts/templates/pages/about_tmpl.coffee
@@ -156,7 +156,7 @@ credits = [
'http://docs.python.org/3/license.html'
], [
'Redis',
- '2006-2013 Salvatore Sanfilippo and others',
+ '2006-2014 Salvatore Sanfilippo and others',
'BSD',
'https://raw.github.com/antirez/redis/unstable/COPYING'
], [
diff --git a/lib/docs/scrapers/redis.rb b/lib/docs/scrapers/redis.rb
index ca90d425..026a071a 100644
--- a/lib/docs/scrapers/redis.rb
+++ b/lib/docs/scrapers/redis.rb
@@ -1,7 +1,7 @@
module Docs
class Redis < UrlScraper
self.type = 'redis'
- self.version = 'up to 2.8.3'
+ self.version = 'up to 2.8.4'
self.base_url = 'http://redis.io/commands'
html_filters.push 'redis/entries', 'redis/clean_html', 'title'
@@ -12,7 +12,7 @@ module Docs
options[:follow_links] = ->(filter) { filter.root_page? }
options[:attribution] = <<-HTML
- © 2006–2013 Salvatore Sanfilippo and others
+ © 2006–2014 Salvatore Sanfilippo and others
Licensed under the three clause BSD license.
HTML
end