From fe151a18749404b7665c268f879c6f72a048d48a Mon Sep 17 00:00:00 2001 From: Preston Sego Date: Mon, 11 Sep 2017 18:35:22 -0400 Subject: [PATCH] bump version, update changelog --- CHANGELOG.md | 6 ++++++ README.md | 3 +-- action_cable_client.gemspec | 1 - lib/action_cable_client/version.rb | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a49a590..5c19605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.0.1 + +**General** + +* [#22](https://github.com/NullVoxPopuli/action_cable_client/pull/22) Removed ActiveSupport Dependency (@srabuini) + ## 2.0 **General** diff --git a/README.md b/README.md index c963e64..1ac17f7 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,7 @@ EventMachine.run do puts message end - # adds to a queue that is purged upon receiving of - # a ping from the server + # Sends a message to the sever, with the 'action', 'speak' client.perform('speak', { message: 'hello from amc' }) end ``` diff --git a/action_cable_client.gemspec b/action_cable_client.gemspec index d1bec72..ea18caa 100644 --- a/action_cable_client.gemspec +++ b/action_cable_client.gemspec @@ -25,7 +25,6 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 2.2.2' - s.add_runtime_dependency 'activesupport', '>= 5.0.0.beta4' s.add_runtime_dependency 'websocket-eventmachine-client', '>= 1.2.0' s.add_development_dependency 'rspec' diff --git a/lib/action_cable_client/version.rb b/lib/action_cable_client/version.rb index 15489d4..1007dae 100644 --- a/lib/action_cable_client/version.rb +++ b/lib/action_cable_client/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class ActionCableClient - VERSION = '2.0.0' + VERSION = '3.0.1' end