# 1.4.0 - Sept 11, 2017 - Update dependency gems to latest version. - Fix `rubocop` config to show cop names as well as increase the ABC complexity slightly. - Add internal tooling to assist with the SCSS => YAML mappings of FontAwesome and PaymentFont. - Update FontAwesome to `v4.7.0` from `v4.6.3`. See [changelog](http://fontawesome.io/icons#new). - Update PaymentFont to `v1.2.5` from `v1.1.2`. See [icons](https://paymentfont.com/#icons). - Update Octicons from to `v4.4.0` from `v3.1.0`. NOTE: As Octicons have moved from font-based icons to SVG after this version, this will be the final octicon version in `prawn/icon`. See the [wiki](https://github.com/blog/2112-delivering-octicons-with-svg). - Fix rubocop warnings for whitespace. # 1.3.0 - Oct 15, 2016 - Update rubocop developement dependency (to `0.44.1`). - Add `simplecov` as a development dependency and require 100% coverage. - Break out `Prawn::Icon::Interface` into its own file. This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27). # 1.2.0 - Sept 12, 2016 - Update FontAwesome from v4.5.0 to v4.6.3. See [changelog](http://fontawesome.io/icons#new). - Refactor spec files to remove duplication using `let` blocks. - Break internal dependencies to `Prawn::Icon::Base` to allow selective code requires. e.g. (to require only `prawn/icon/font_data`): ```ruby require 'prawn/icon/base' require 'prawn/icon/font_data' ``` This resolves issue [#27](https://github.com/jessedoyle/prawn-icon/issues/27). Thanks @mojavelinux for reporting! - Introduce `Prawn::Icon::Errors` to contain internal exception classes. - `Prawn::Icon::FONTDIR` is now an alias to `Prawn::Icon::Base::FONTDIR` for compatibilty. - Add basic spec files for `Prawn::Icon::Base` and separate exception classes. - Minor backwards-compatible code refactor of `Prawn::Icon::FontData` for readability. - Add a spec to test inline_icon with final_gap: false to achieve 100% coverage. # 1.1.1 - Jun 24, 2016 - BUGFIX: Inline icons now properly render at the correct cursor position with the correct line gap and box leading[#24](https://github.com/jessedoyle/prawn-icon/issues/24). Thanks @ToniTornado for reporting! # 1.1.0 - March 16, 2016 - Update FontAwesome from v4.4.0 to v4.5.0. See [changelog](http://fontawesome.io/icons#new). - Refactor specs to use `expect(foo).to be true` over `expect(foo).to be_true`. - Update development dependencies to latest. # 1.0.0 - September 9, 2015 - *(breaking change)* Updated Octicons from v2.4.1 to v3.1.0. - The following icons were removed: - `octicon-microsope` - `octicon-beer` - `octicon-split` - `octicon-puzzle` - `octicon-steps` - `octicon-podium` - `octicon-timer` - `octicon-hourglass` - all `octicon-alignment` icons - all `octicon-move` icons - all `octicon-playback` icons - all `octicon-jump` icons - The following icons were added: - `octicon-beaker` - `octicon-bell` - `octicon-desktop-download` - `octicon-watch` - `octicon-shield` - Updated FontAwesome from v4.3.0 to v4.4.0. See [changelog](http://fontawesome.io/icons#new). # 0.7.1 - August 4, 2015 - Moved the internal font directory from `fonts` to `data/fonts` for consistency between Prawn-related gems [#16](https://github.com/jessedoyle/prawn-icon/issues/16). # 0.7.0 - July 23, 2015 - Update Travis config to relax the versions of `Prawn` and `Ruby` that are tested against. See `.travis.yml` to see what versions are supported (though you shouldn't have issues with other versions). - Implement inline_format for table icons. [#14](https://github.com/jessedoyle/prawn-icon/pull/14). - Updated Octicons to v2.4.1. See [changelog](https://github.com/github/octicons/releases/) between versions 2.1.2 and 2.4.1. # 0.6.4 - May 4, 2015 - [PaymentFont](http://paymentfont.io) is now supported and included in `Prawn::Icon`. # 0.6.3 - March 4, 2015 - Relaxed Prawn runtime dependency from >= 1.3.0 to >= 1.1.0. - Added CI tests for multiple versions of Prawn. - Added missing `end` statement to example code in README. # 0.6.2 - February 10, 2015 - Added this CHANGELOG. - Added the `table_icon` method to simplify icon use in conjuction with `Prawn::Table`. - Added a `.yardopts` file for better documentation. - Clean `.gemspec` to increase readability. # 0.6.1 - January 27, 2015 - Upgraded FontAwesome to `v4.3.0`. # 0.6.0 - January 20, 2015 - Single-quoted attributes are now supported when using `inline_format: true`. - Prawn is now specified as a runtime dependency of `prawn/icon`. # 0.5.1 - November 2, 2014 - Bugfix for improperly cached font data. - Added Codeclimate and Travis CI. # 0.5.0 - October 29, 2014 - Initial public release.