Skip to content

Commit

Permalink
gem release prep
Browse files Browse the repository at this point in the history
incremented version
updated README.md
updated CHANGELOG.md
  • Loading branch information
tomichj committed Oct 4, 2017
1 parent b57be92 commit b808559
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Operate Changelog


## [0.1.1] - October 27, 2017

- dependency on ActiveSupport::Concern removed
- ActiveRecord no longer required: if ActiveRecord is not available, `Operate::Command#transaction(&block)` is disabled


## 0.1.0 - September 27, 2017

- Initial release


[0.1.1]: https://github.com/tomichj/operate/compare/0.1.0...0.1.1
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Operate is a gem to help create [service objects].

[![Gem Version](https://badge.fury.io/rb/operate.svg)](https://badge.fury.io/rb/operate) ![Build status](https://travis-ci.org/tomichj/operate.svg?branch=master) ![Code Climate](https://codeclimate.com/github/tomichj/operate/badges/gpa.svg)

Use Operate to __remove business logic from your controller and model__, subsuming it in Operate-based
"service" object that represents your processes. Examples might be: a user addition, a post addition,
or adding a comment.
Expand Down Expand Up @@ -126,6 +128,13 @@ This project is intended to be a safe, welcoming space for collaboration, and co
expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.


## Contributors

Many thanks to:

* [k3rni](https://github.com/k3rni) made ActiveRecord dependency optional


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Expand Down
2 changes: 1 addition & 1 deletion lib/operate/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Operate
VERSION = "0.1.0"
VERSION = '0.1.1'
end

0 comments on commit b808559

Please sign in to comment.