Skip to content

Commit

Permalink
Bump to version 0.4.
Browse files Browse the repository at this point in the history
And mconf-web-conf to version 0.3.
  • Loading branch information
daronco committed Oct 7, 2011
1 parent 81c5fa4 commit 30f7da0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/deploy/conf.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ staging:
user: "mconf" # User (in the server) used to deploy
repository: "git://github.com/mconf/mconf-web.git" # Repository to get the app from
scm: "git" # Repository scm
branch: "v0.3" # Branch or tag to be deployed
branch: "v0.4" # Branch or tag to be deployed
# scm_username: "scm-username" # Username to access the scm
# scm_password: "scm-pass" # Password to access the scm
# deploy_to: "/home/myuser/deploy_folder/" # Folder where the app will be in the server
Expand All @@ -35,4 +35,4 @@ production:
user: "mconf"
repository: "git://github.com/mconf/mconf-web.git"
scm: "git"
branch: "v0.3"
branch: "v0.4"
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Vcc
VERSION = "0.3".freeze
VERSION = "0.4".freeze

# get the current git branch
@@branch = nil
Expand Down
4 changes: 3 additions & 1 deletion script/mconf-web-conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
# * See other TODO: markers in the code
#
# Changelog:
# 2011-10-07 LCD Version 0.3
# 2011-09-26 LCD God installation and configuration
# 2011-09-23 LCD The deployment now does not use capistrano and so it does not require a
# development environment.
# 2011-09-20 LCD Started removing all development-related tasks, the script will be used
Expand All @@ -28,7 +30,7 @@

IP=$(ifconfig | grep -v '127.0.0.1' | grep -E "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*" | head -1 | cut -d: -f2 | awk '{print $1}') # local IP from ifconfig

SCRIPT_VERSION="0.2" # The version of this script
SCRIPT_VERSION="0.3" # The version of this script

RVM_VERSION=1.8.5 # fixed RVM version to be installed
RVM_RUBY_VERSION=1.9.2-p290 # Ruby version
Expand Down

0 comments on commit 30f7da0

Please sign in to comment.