Skip to content

Commit

Permalink
update changelog and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
SidOfc committed Jan 22, 2016
1 parent 78e5328 commit 9281c03
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
8 changes: 7 additions & 1 deletion 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

Expand Down
31 changes: 31 additions & 0 deletions README.md
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion browserino.gemspec
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion lib/browserino/version.rb
@@ -1,3 +1,3 @@
module Browserino
VERSION = '2.5.4'.freeze
VERSION = '2.6.0'.freeze
end

0 comments on commit 9281c03

Please sign in to comment.