Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
griddler 1.0.0-alpha.2
Browse files Browse the repository at this point in the history
Since 1.0.0-alpha.1:
--------------------

* Replace mailgun adapter with gem

For 1.0.0:
----------

1.0.0 includes several breaking changes, including:

* Remove generated email_processor route. Griddler now requires that you
  either create your own route pointing to the
  Griddler::EmailsController or that you use the mount_griddler helper
  in your config/routes.rb. 4a1fb50
  #149

* Griddler previously introduced the concept of adapters as a means of
  supporting different services. While this allowed Griddler's user base
  to grow, these adapters were prone to errors and became a maintenance
  burden. Rather than dropping support for these services, all adapters
  (including SendGrid) have been extracted from Griddler and will be
  maintained by people who have more experience in their use. Griddler
  now requires the use of an adapter to function, so you will need to
  add both griddler and an adapter to your Gemfile. Adapters are
  outlined in the README.
  #124

* Change the supported Ruby version to the latest in the 2.0.* and
  2.1.* ranges and Rails version to the stable versions of 4.0 and 4.1.
  We run tests against the master version of Rails and are try to make
  sure than any failures are on the Rails side and not Griddler's, but
  those are a lower priority. These versions basically match the
  supported versions of Ruby and Rails.
  #125

1.0.0 also includes a slew of bug fixes and minor improvements:

* Better handle `to` from Mailgun.
* Better error for missing EmailProcessor.
* Remove Rails warning messages in specs.
* Exit if bundler is not installed.
* Make README friendlier.
* Remove 0.5.0 upgrade note from README.md regarding mount_griddler.
* Update to RSpec 3.0.
* Link to new version of Giant Robots blog.
  • Loading branch information
calebhearth committed Jun 17, 2014
1 parent 13af465 commit 6be5e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/griddler/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Griddler
VERSION = "1.0.0-alpha.1"
VERSION = "1.0.0-alpha.2"
end

6 comments on commit 6be5e81

@gabebw
Copy link
Contributor

@gabebw gabebw commented on 6be5e81 Jun 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is such a good, tagged commit message.

@gabebw
Copy link
Contributor

@gabebw gabebw commented on 6be5e81 Jun 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Though it should also be in NEWS, I think.

@calebhearth
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm thinking NEWS will be a curated git log --pretty="format:* %s." with
tagged commits being links to the tag, and headers. I don't want to maintain
nice explanations of everything.

@gabebw
Copy link
Contributor

@gabebw gabebw commented on 6be5e81 Jun 18, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So you're going to create a NEWS file? Or you're going to tell people to run a git command to get a NEWS file approximation?

@calebhearth
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh no I'll throw one in. Or you can.

@gabebw
Copy link
Contributor

@gabebw gabebw commented on 6be5e81 Jun 18, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Go for it.

Please sign in to comment.