1.0
This commit is contained in:
parent
bd5e214614
commit
9dca6f0054
8
CHANGELOG.md
Normal file
8
CHANGELOG.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
master
|
||||
===
|
||||
|
||||
1.0.0
|
||||
===
|
||||
|
||||
* Respect user details of git repo. #70
|
||||
* Prevent bad commits deploying. (git) #77
|
22
README.md
22
README.md
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue