Skip to content

Commit fe151a1

Browse files
committed
bump version, update changelog
1 parent c861e59 commit fe151a1

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.0.1
2+
3+
**General**
4+
5+
* [#22](https://github.com/NullVoxPopuli/action_cable_client/pull/22) Removed ActiveSupport Dependency (@srabuini)
6+
17
## 2.0
28

39
**General**

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ EventMachine.run do
2626
puts message
2727
end
2828

29-
# adds to a queue that is purged upon receiving of
30-
# a ping from the server
29+
# Sends a message to the sever, with the 'action', 'speak'
3130
client.perform('speak', { message: 'hello from amc' })
3231
end
3332
```

action_cable_client.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Gem::Specification.new do |s|
2525

2626
s.required_ruby_version = '>= 2.2.2'
2727

28-
s.add_runtime_dependency 'activesupport', '>= 5.0.0.beta4'
2928
s.add_runtime_dependency 'websocket-eventmachine-client', '>= 1.2.0'
3029

3130
s.add_development_dependency 'rspec'

lib/action_cable_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
class ActionCableClient
4-
VERSION = '2.0.0'
4+
VERSION = '3.0.1'
55
end

0 commit comments

Comments
 (0)