From 7360fcadc4b5ec36b9e6032e232544aa94e7fc30 Mon Sep 17 00:00:00 2001 From: Karl Freeman Date: Fri, 21 Nov 2014 17:25:01 +0000 Subject: [PATCH] 1.0 --- CHANGELOG.md | 8 ++++++++ README.md | 22 +++------------------- lib/middleman-deploy/pkg-info.rb | 4 ++-- 3 files changed, 13 insertions(+), 21 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..48f652d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +master +=== + +1.0.0 +=== + +* Respect user details of git repo. #70 +* Prevent bad commits deploying. (git) #77 diff --git a/README.md b/README.md index fcbb7ba..6ddd1e4 100644 --- a/README.md +++ b/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) diff --git a/lib/middleman-deploy/pkg-info.rb b/lib/middleman-deploy/pkg-info.rb index fc3e857..528565f 100644 --- a/lib/middleman-deploy/pkg-info.rb +++ b/lib/middleman-deploy/pkg-info.rb @@ -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 \ No newline at end of file +end