Skip to content

Commit

Permalink
version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Jan 14, 2019
1 parent 50807e5 commit 3411c51
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,19 @@
0.4.3
-----

- Auto reload `target`, when action/unaction target.

```rb
irb> post.likes_count
=> 0
irb> user.like_post(post)
irb> post.likes_count
=> 1
irb> user.unlike_post(post)
irb> post.likes_count
=> 0
```

0.4.2
-----

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
action-store (0.4.2)
action-store (0.4.3)
rails (~> 5)

GEM
Expand Down Expand Up @@ -142,4 +142,4 @@ DEPENDENCIES
simplecov

BUNDLED WITH
1.17.1
1.17.2
2 changes: 1 addition & 1 deletion lib/action_store/version.rb
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module ActionStore
VERSION = "0.4.2"
VERSION = "0.4.3"
end

0 comments on commit 3411c51

Please sign in to comment.