Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Peters committed Jun 12, 2017
1 parent 94849df commit 1474328
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
# CHANGELOG

## 0.6.0 - November 16, 2015
## 0.7.0 - June 12, 2017

### Enhancements

- [@jmfederico](https://github.com/jmfederico)
[implemented](https://github.com/liveeditor/draftsman/commit/87f242374ad9fd97f7dba2e485d68da407c46fed)
[#67](https://github.com/liveeditor/draftsman/pull/67)
5.1 compatibility
- [@chrisdpeters](https://github.com/chrisdpeters)
[implemented](https://github.com/liveeditor/draftsman/commit/e2c8e497899a453daf4c60d6ce02cacbf15a0f12)
Change Draft.object_col_is_json? to skip over itself if not stashing drafted changes
- [@npezza93](https://github.com/npezza93)
[implemented](https://github.com/liveeditor/draftsman/commit/936d5a37c044c5ca0a5699a553d9bc111f2d91d2)
[#58](https://github.com/liveeditor/draftsman/pull/58)
Only update attributes that get changed instead of all of them
- [@jmfederico](https://github.com/jmfederico)
[implemented](https://github.com/liveeditor/draftsman/commit/e8ba201db6bb88ea0ebc47c1262eb24e892e9a0b)
[#65](https://github.com/liveeditor/draftsman/pull/65)
Do not "touch" models when not updating the base table content

### Bug Fixes

- [@jokius](https://github.com/jokius)
[fixed](https://github.com/liveeditor/draftsman/commit/5ca7d6717109d753959a5d56c0fe81c3cd7b75f1)
[#57](https://github.com/liveeditor/draftsman/pull/57)
Fix if self.changeset is nil
- [@jmfederico](https://github.com/jmfederico)
[fixed](https://github.com/liveeditor/draftsman/commit/207d158d054ed13ca6dc0a15ae2c499b0aac5f5f)
[#64](https://github.com/liveeditor/draftsman/pull/64)
Fix error when saving a draft when one already existed

## 0.6.0 - November 16, 2016

### Enhancements

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Draftsman v0.6.0
# Draftsman v0.7.0

[![Build Status](https://secure.travis-ci.org/liveeditor/draftsman.svg?branch=master)](http://travis-ci.org/liveeditor/draftsman)

Expand Down Expand Up @@ -64,7 +64,7 @@ ActiveRecord.
Add Draftsman to your `Gemfile`.

```ruby
gem 'draftsman', '~> 0.6.0'
gem 'draftsman', '~> 0.7.0'
```

Or if you want to grab the latest from `master`:
Expand Down
2 changes: 1 addition & 1 deletion lib/draftsman/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Draftsman
VERSION = '0.6.0'
VERSION = '0.7.0'
end

2 comments on commit 1474328

@jmfederico
Copy link
Collaborator

Choose a reason for hiding this comment

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

@chrisdpeters
Just saw the named release! Thank you very much, I feel honoured!

@chrisdpeters
Copy link
Collaborator

Choose a reason for hiding this comment

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

@jmfederico You're welcome. Glad that you're still around.

Please sign in to comment.