-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from vikdotdev/v0.3.4-patch
fix Bot#initialize, deprecate Bot#send
- Loading branch information
Showing
7 changed files
with
73 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Changelog | ||
|
||
This project partially adheres to [semver | ||
2.0.0](http://semver.org/spec/v2.0.0.html) with the exception that breaking | ||
changes can be introduced on MINOR level up until v1.0.0. It also follows the | ||
recommendations of [keepachangelog.com](http://keepachangelog.com/). | ||
|
||
## Unreleased | ||
|
||
### Breaking Changes | ||
- Rename config to configuration | ||
|
||
### Added | ||
- None | ||
|
||
### Fixed | ||
- None | ||
|
||
### Changed | ||
- None | ||
|
||
### Removed | ||
- None | ||
|
||
### Security | ||
- None | ||
|
||
### Deprecated | ||
- None | ||
|
||
## v0.3.4 | ||
Start a changelog. | ||
|
||
### Breaking Changes | ||
- None | ||
|
||
### Fixed | ||
- Add empty default `Viberroo::Response` instance to `Viberroo::Bot` constructor to avoid setting redundant objects during webhook subscription phase e.g. `Viberro::Bot.new(response: Viberroo::Response.new({})).set_webhook` becomes `Viberro::Bot.new.set_webhook`. | ||
- Fix Ruby version compatibility from `2.4` to correctly specified `2.3`. | ||
|
||
### Deprecated | ||
- Deprecate `Bot#send`. Will get replaced by `Bot#send_message` in next minor release. | ||
|
||
### Added | ||
- Add `Bot#send_message` that acts same as `Bot#send`. | ||
|
||
### Removed | ||
- Logger entry for every `Bot` request that had no configuration options. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
viberroo (0.3.2) | ||
viberroo (0.3.4) | ||
recursive-open-struct (~> 1.1.1) | ||
|
||
GEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Viberroo | ||
VERSION = '0.3.3'.freeze | ||
VERSION = '0.3.4'.freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters