1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Preparing 3.0.0.pre7

This commit is contained in:
Lee Hambley 2013-07-04 09:43:51 +02:00
parent b23a56fa98
commit df93237dee
3 changed files with 13 additions and 3 deletions

10
CHANGELOG.md Normal file
View file

@ -0,0 +1,10 @@
# Capistrano 3.x Changelog
Reverse Chronological Order:
## `3.0.0.pre7`
* Fix Git https authentication. (@leehambley)
* Capfile template fixes (repo/repo_url) (@teohm)
* Readme Fixes (@ffmike, @kejadlen, @dwickwire)
* Fix the positioning of the bundler hook, now immediately after finalize. (@teohm)

View file

@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
gem.version = Capistrano::VERSION
gem.authors = ["Tom Clements", "Lee Hambley"]
gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com"]
gem.description = %q{PENDING: Write a gem description}
gem.summary = %q{PENDING: Write a gem summary}
gem.description = %q{Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.}
gem.summary = %q{Capistrano - Welcome to easy deployment with Ruby over SSH}
gem.homepage = ""
gem.files = `git ls-files`.split($/)

View file

@ -1,3 +1,3 @@
module Capistrano
VERSION = "3.0.0.pre6"
VERSION = "3.0.0.pre7"
end