Skip to content

Commit

Permalink
1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Jun 30, 2020
1 parent 24b5f81 commit 4df64f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@

## master

- Support `rescue_from` in connections (Rails 6.1). ([@palkan][])
## 1.0.0 (2020-07-01)

## 1.0.0.rc4 (2020-06-24)
- Support `rescue_from` in connections (Rails 6.1). ([@palkan][])

- Make AnyCable patches compatible with Action Cable testing. ([@palkan][])

- Do not add localhost `redis_url` to `anycable.yml` when Docker development method is chosen in `anycable:setup`. ([@palkan][])

## 1.0.0.rc2 (2020-06-16)

- Fix connection identifiers deserialization regression. ([@palkan][])

Using non-strings or non-GlobalId-encoded objects was broken.
Expand All @@ -21,8 +19,6 @@ Using non-strings or non-GlobalId-encoded objects was broken.
Update Docker snippet, do not enable persistent sessions automatically,
fix setting `config.action_cable.url` in environment configuration.

## 1.0.0.rc1 (2020-06-10)

- Add `state_attr_accessor` for channels. ([@palkan][])

Just like `attr_accessor` but "persists" the state between RPC calls.
Expand Down
2 changes: 1 addition & 1 deletion anycable-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 2.5"

spec.add_dependency "anycable", "1.0.0.rc2"
spec.add_dependency "anycable", ">= 1.0.0"
spec.add_dependency "rails", ">= 5"

spec.add_development_dependency "ammeter", "~> 1.1"
Expand Down
2 changes: 1 addition & 1 deletion lib/anycable/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module AnyCable
module Rails
VERSION = "1.0.0.rc4"
VERSION = "1.0.0"
end
end

0 comments on commit 4df64f8

Please sign in to comment.