1.0
This commit is contained in:
parent
bd5e214614
commit
7360fcadc4
3 changed files with 13 additions and 21 deletions
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
|
## Installation
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
gem 'middleman-deploy', '~> 0.3.0'
|
gem 'middleman-deploy', '~> 1.0'
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@ -151,20 +151,6 @@ $ rake deploy:staging
|
||||||
$ rake deploy:production
|
$ 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
|
## Badges
|
||||||
|
|
||||||
[![Gem Version](http://img.shields.io/gem/v/middleman-deploy.svg)][gem]
|
[![Gem Version](http://img.shields.io/gem/v/middleman-deploy.svg)][gem]
|
||||||
|
@ -184,12 +170,10 @@ implementations:
|
||||||
- [JRuby][jruby]
|
- [JRuby][jruby]
|
||||||
- [Rubinius][rubinius]
|
- [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
|
# Credits
|
||||||
|
|
||||||
|
A **BIG** thanks to [everyone who has contributed](https://github.com/karlfreeman/middleman-deploy/graphs/contributors)! Almost all pull requests are accepted.
|
||||||
|
|
||||||
Inspiration:
|
Inspiration:
|
||||||
|
|
||||||
- The rsync task in [Octopress](https://github.com/imathis/octopress)
|
- The rsync task in [Octopress](https://github.com/imathis/octopress)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
module Middleman
|
module Middleman
|
||||||
module Deploy
|
module Deploy
|
||||||
PACKAGE = 'middleman-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).'
|
TAGLINE = 'Deploy a middleman built site over rsync, ftp, sftp, or git (e.g. gh-pages on github).'
|
||||||
README = %Q{
|
README = %Q{
|
||||||
You should follow one of the four examples below to setup the deploy
|
You should follow one of the four examples below to setup the deploy
|
||||||
|
|
Loading…
Reference in a new issue