master v1.0.0
Karl Freeman 2014-11-21 17:25:01 +00:00
parent bd5e214614
commit 7360fcadc4
3 changed files with 13 additions and 21 deletions

8
CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
master
===
1.0.0
===
* Respect user details of git repo. #70
* Prevent bad commits deploying. (git) #77

View File

@ -5,7 +5,7 @@ Deploy your [Middleman](http://middlemanapp.com/) build via **rsync**, **ftp**,
## Installation
```ruby
gem 'middleman-deploy', '~> 0.3.0'
gem 'middleman-deploy', '~> 1.0'
```
## Usage
@ -151,20 +151,6 @@ $ rake deploy:staging
$ rake deploy:production
```
## Breaking Changes
* `v0.3.0`
- Ruby 1.9.3+ support only
* `v0.1.0`
- Removed the `--clean` command-line option. This option only applied to
the rsync deploy method. The idea going forward is that command-line
options must apply to all deploy methods. Options that are specific to a
deploy method will only be available in `config.rb`.
- Removed `deploy` from the `after_build` hook. This caused a `deploy` to
be run each time `build` was called. This workflow never made
sense. `deploy` was added to the `after_build` hook simply because it
was available.
## Badges
[![Gem Version](http://img.shields.io/gem/v/middleman-deploy.svg)][gem]
@ -184,12 +170,10 @@ implementations:
- [JRuby][jruby]
- [Rubinius][rubinius]
## Thanks!
A **BIG** thanks to [everyone who has contributed](https://github.com/tvaughan/middleman-deploy/graphs/contributors)! Almost all pull requests are accepted.
# Credits
A **BIG** thanks to [everyone who has contributed](https://github.com/karlfreeman/middleman-deploy/graphs/contributors)! Almost all pull requests are accepted.
Inspiration:
- The rsync task in [Octopress](https://github.com/imathis/octopress)

View File

@ -1,7 +1,7 @@
module Middleman
module Deploy
PACKAGE = 'middleman-deploy'
VERSION = '0.3.0'
VERSION = '1.0.0'
TAGLINE = 'Deploy a middleman built site over rsync, ftp, sftp, or git (e.g. gh-pages on github).'
README = %Q{
You should follow one of the four examples below to setup the deploy
@ -61,4 +61,4 @@ activate :deploy do |deploy|
deploy.password = "secret"
end}
end
end
end