-
Notifications
You must be signed in to change notification settings - Fork 5
Remove ks dependency #46
Changes from 16 commits
a627baf
29a25ff
75f81f2
7c34b6b
a8914e5
47c21f4
930ee2e
3563018
630f1bc
2f96c85
ed8bd17
29dac98
01f71ec
14cb0af
5caf08c
fd583fb
4b6a238
0332274
61a4434
a3fa2f5
9e82a48
dc2724f
933acea
5e7634a
5fbc8ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
language: ruby | ||
rvm: | ||
- 2.4.4 | ||
- 2.5.1 | ||
- 2.6.2 | ||
sudo: false | ||
- 2.6.8 | ||
- 2.7.4 | ||
- 3.0.2 | ||
cache: bundler | ||
env: | ||
global: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
## 1.0.0 | ||
* Add support for Ruby 2.6 and onwards (including Ruby 3.0) | ||
* Drop support for Ruby 2.5 and lower | ||
* Remove `ks` dependency | ||
* Add `addressable` runtime dependency | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need to depend on Addressable? GIven that this is a library. Are there any features in Addressable we are using which are not provided by There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good question! |
||
|
||
## 0.8.2 | ||
* Change format_parser required version to allow > 0.24 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
require 'ks' | ||
require 'json' | ||
require 'patron' | ||
require 'rmagick' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class ImageVise | ||
VERSION = '0.8.2' | ||
VERSION = '1.0.0' | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has no effect anymore.