Skip to content

Commit

Permalink
Release v1.1.0 (#64)
Browse files Browse the repository at this point in the history
* Update README and CHANGES.

* Bump to v1.1.0.

* Update compatibility section in README.

* Add release date in changelog.

* Update OS gem version requirement to be 1.0.0 or higher.
  • Loading branch information
kapoorlakshya committed Apr 14, 2019
1 parent 99ff7c8 commit 916fafd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
11 changes: 6 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
### 1.1.0 (TBD)
* <b>Now supports macOS</b>. Please [raise an Issue](https://github.com/kapoorlakshya/screen-recorder/issues/new) if you run into problems.
* Force kill `ffmpeg` if it takes more than 10s to quit.
### 1.1.0 (2019-04-14)
* <b>Add support for macOS</b> ([#55](https://github.com/kapoorlakshya/screen-recorder/issues/55)). Please [raise an Issue](https://github.com/kapoorlakshya/screen-recorder/issues/new) if you run into problems.
* Force kill `ffmpeg` if it takes more than 10s to quit ([#60](https://github.com/kapoorlakshya/screen-recorder/issues/60)).
* Fix a bug where `ScreenRecorder.ffmpeg_binary=()` was not properly defined.
* `ScreenRecorder::Titles#fetch` will now raise a `NotImplementedError` when used in a
Linux or a macOS environment.
* `ScreenRecorder::Titles#fetch` will now raise `NotImplementedError` when used in a
Linux or a macOS environment. Only works on Windows.
* Default `input` value on Linux is now `:0`.

### 1.0.0 (2019-03-15)
* Released first major version.
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ Demo - [https://kapoorlakshya.github.io/introducing-screen-recorder-ruby-gem](ht

## Compatibility

Supports Windows, Linux and macOS as of v1.1.0.

Requires Ruby 2.0.0 (MRI) or higher, and is tested
with versions 2.3.8, 2.4.5, 2.5.3, and 2.6.1.
Works on Windows, Linux, and macOS. Requires Ruby 2.0.0 or higher.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/screen-recorder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ScreenRecorder
VERSION = '1.0.0'.freeze
VERSION = '1.1.0'.freeze
end
2 changes: 1 addition & 1 deletion screen-recorder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'watir', '~> 6.0'
spec.add_development_dependency 'webdrivers', '~> 3.0'

spec.add_runtime_dependency 'os', '~> 0.9.0'
spec.add_runtime_dependency 'os', '~> 1.0.0'
spec.add_runtime_dependency 'streamio-ffmpeg', '~> 3.0'
end

0 comments on commit 916fafd

Please sign in to comment.