Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
karlfreeman committed Nov 21, 2014
1 parent bd5e214 commit 7360fca
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 21 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
master
===

1.0.0
===

* Respect user details of git repo. #70
* Prevent bad commits deploying. (git) #77
22 changes: 3 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions lib/middleman-deploy/pkg-info.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -61,4 +61,4 @@ module Deploy
deploy.password = "secret"
end}
end
end
end

0 comments on commit 7360fca

Please sign in to comment.