From c52e9f25b41d366257cd5285d0dfb5ac5f058631 Mon Sep 17 00:00:00 2001 From: Remo Mueller Date: Mon, 1 Jun 2015 10:54:29 -0400 Subject: [PATCH] Version 7.0.1 finalized --- CHANGELOG.md | 2 +- config/initializers/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b606bc93..8d43c9734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 7.0.1 +## 7.0.1 (June 1, 2015) ### Bug Fix - Fixed an issue with the URL structure for Facebook and Twitter share links diff --git a/config/initializers/version.rb b/config/initializers/version.rb index 961e32215..c8a29f1be 100644 --- a/config/initializers/version.rb +++ b/config/initializers/version.rb @@ -3,7 +3,7 @@ module VERSION #:nodoc: MAJOR = 7 MINOR = 0 TINY = 1 - BUILD = "pre" # "pre", "beta1", "beta2", "rc", "rc2", nil + BUILD = nil # "pre", "beta1", "beta2", "rc", "rc2", nil STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.') end