summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--VERSION2
-rw-r--r--app/models/project.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 165a9a57876..fcf5fdeea99 100644
--- a/README.md
+++ b/README.md
@@ -151,7 +151,7 @@ or start each component separately
* [Consultancy](http://www.gitlab.com/consultancy/) from the GitLab experts for installations, upgrades and customizations.
-* [#gitlab IRC channel](http://www.freenode.net/) on Freenode is unofficial but offers a way to get in touch with other GitLab users who may be able to help you.
+* [#gitlab IRC channel](http://www.freenode.net/) on Freenode to get in touch with other GitLab users and get help, it's managed by James Newton, Drew Blessing and Sam Gleske
* [Book](http://www.packtpub.com/gitlab-repository-management/book) written by GitLab enthusiast Jonathan M. Hethey is unofficial but it offers a good overview.
diff --git a/VERSION b/VERSION
index 26cb0a3b27c..9a6f1974571 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-6.4.0.pre
+6.4.0.beta1
diff --git a/app/models/project.rb b/app/models/project.rb
index 51f7e949535..93aac1abf6d 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -81,7 +81,7 @@ class Project < ActiveRecord::Base
delegate :members, to: :team, prefix: true
# Validations
- validates :creator, presence: true
+ validates :creator, presence: true, on: :create
validates :description, length: { maximum: 2000 }, allow_blank: true
validates :name, presence: true, length: { within: 0..255 },
format: { with: Gitlab::Regex.project_name_regex,