Skip to content

Commit

Permalink
Merge pull request signalwire#27 from signalwire/release/2.1
Browse files Browse the repository at this point in the history
Prepare 2.1 release
  • Loading branch information
lpradovera authored Jul 30, 2019
2 parents 984b270 + 6e21299 commit 1e37bf1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.1.0] 2019-07-29
### Added
- Tap API for Relay
- `:task` broadcast from client
- `Relay::Task` and `on_task` handler for `Consumer`
- Fax API for Relay
- `Detect` API for Relay
- Messaging API for Relay
### Changed
- Changed `SIGNALWIRE_ACCOUNT` environment variable to `SIGNALWIRE_PROJECT_KEY` to match UI

Expand Down
2 changes: 2 additions & 0 deletions lib/signalwire/relay/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,11 @@ def relay_execute(command, timeout = Signalwire::Relay::COMMAND_TIMEOUT, &block)
logger.error "Relay command failed with code #{code} and message: #{message}" unless success
else
logger.error 'Unknown Relay command failure, result code not found'
block.call(event, :failure) if block_given?
end
else
logger.error 'Unknown Relay command failure, command timed out'
block.call(event, :failure) if block_given?
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/signalwire/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Signalwire
VERSION = '2.0.0'
VERSION = '2.1.0'
end

0 comments on commit 1e37bf1

Please sign in to comment.