From 9281c03b3c083004ee7a1aca274ae26894c6c00c Mon Sep 17 00:00:00 2001 From: Sidney Liebrand Date: Fri, 22 Jan 2016 23:05:19 +0100 Subject: [PATCH] update changelog and version bump --- CHANGELOG.md | 8 +++++++- README.md | 31 +++++++++++++++++++++++++++++++ browserino.gemspec | 2 +- lib/browserino/version.rb | 2 +- 4 files changed, 40 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54e5532..e7d3426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## CHANGELOG -_dates are in dd-mm-yyyy format_ +_dates are in dd-mm-yyyy format_ + +#### 15-01-2016 VERSION 2.5.2 + +- **DEPRECATE** Custom return values (passed through `Browserino.parse`) will no longer alter the output of the agent object +- Added support for windows phone detection +- Added `windows_phone?` method #### 12-01-2016 VERSION 2.5.1 diff --git a/README.md b/README.md index 1b3084e..0167839 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,37 @@ A UserAgent sniffer with Rails >= 3.2.0 integration _dates are in dd-mm-yyyy format_ _older changes can be found in the [CHANGELOG.md](/CHANGELOG.md)_ +#### 22-01-2016 VERSION 2.6.0 + +- Fixed `to_a` method +- Fixed `to_s` method +- Removed **bot** suffixes from every bot name + - Replaced `googlebot?` with `google?` + - Replaced `msnbot?` with `msn?` + - Replaced `bingbot?` with `bing?` + - Replaced `yandexbot?` with `yandex?` + - Replaced `exabot?` with `exa?` +- Added `platform?` method +- Added `browser?` method +- Added `social_media?` method +- Added `facebook?` and `fb?` methods +- Added `twitter?` method +- Added `linkedin?` method +- Added `instagram?` method +- Added `pinterest?` method +- Added `tumblr?` method +- Added support for the Brave browser and the `brave?` method +- Added `ff?` method + +#### 20-01-2016 VERSION 2.5.4 + +- formatted / refactored code with rubocop +- iOS `system_name full: true` returns the version no. of iOS if found + +#### 19-01-2016 VERSION 2.5.3 + +- Minor refactoring of code + ## Installation Add the following to your applications Gemfile: diff --git a/browserino.gemspec b/browserino.gemspec index 89b5854..17bdd07 100644 --- a/browserino.gemspec +++ b/browserino.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |spec| spec.authors = ["Sidney Liebrand"] spec.email = ["sidneyliebrand@gmail.com"] - spec.summary = %q{A browser identification gem} + spec.summary = %q{A browser identification gem with Rails (>= 3.2.0) integration} spec.homepage = "https://github.com/SidOfc/browserino" spec.license = "MIT" diff --git a/lib/browserino/version.rb b/lib/browserino/version.rb index aa5dd26..8dd2984 100644 --- a/lib/browserino/version.rb +++ b/lib/browserino/version.rb @@ -1,3 +1,3 @@ module Browserino - VERSION = '2.5.4'.freeze + VERSION = '2.6.0'.freeze end