Skip to content

Commit 61af4dc

Browse files
author
Chris Peters
committed
Document version 0.3.7
1 parent ef5a135 commit 61af4dc

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# CHANGELOG
22

3+
## 0.3.7 - November 4, 2015
4+
5+
- [@bdunham](https://github.com/bdunham)
6+
[Fixed](https://github.com/liveeditor/draftsman/commit/3610087a319fd203684146bb1d37bf0e41276743) -
7+
Prevented double require of model definition
8+
- [@chrisdpeters](https://github.com/chrisdpeters)
9+
[Fixed](https://github.com/liveeditor/draftsman/commit/ec2edf45700a3bea8cfac6f9facbc8ef6c7f9f54)
10+
[#36](https://github.com/liveeditor/draftsman/issues/36) -
11+
Fails miserably with foreign keys
12+
- [@dpaluy](https://github.com/dpaluy)
13+
[Fixed](https://github.com/dpaluy/draftsman/blob/afce35b3985c79760176f31710c11a77b1201f0e/config/initializers/draftsman.rb)
14+
[#33](https://github.com/liveeditor/draftsman/issues/33) -
15+
SerializedAttributes is deprecated in Rails 4.2.x, and will be removed in Rails 5
16+
- [@chrisdpeters](https://github.com/chrisdpeters)
17+
[Fixed](https://github.com/liveeditor/draftsman/commit/adc2843105e8fcf34d714557e82cf3f24942dbcb) -
18+
Fix `serve_static_assets` deprecation warning
19+
320
## 0.3.6 - August 16, 2015
421

522
- [@chrisdpeters](https://github.com/chrisdpeters)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Draftsman v0.3.6 (alpha)
1+
# Draftsman v0.3.7 (alpha)
22

33
Draftsman is a Ruby gem that lets you create draft versions of your database records. If you're developing a system in
44
need of simple drafts or a publishing approval queue, then Draftsman just might be what you need.
@@ -50,7 +50,7 @@ Works well with Rails, Sinatra, or any other application that depends on ActiveR
5050
Add Draftsman to your `Gemfile`.
5151

5252
```ruby
53-
gem 'draftsman', '0.3.6'
53+
gem 'draftsman', '0.3.7'
5454
```
5555

5656
Or if you want to grab the latest from `master`:

lib/draftsman/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Draftsman
2-
VERSION = '0.3.6'
2+
VERSION = '0.3.7'
33
end

0 commit comments

Comments
 (0)