Skip to content

Commit

Permalink
Release v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunne committed Jul 24, 2017
1 parent 31ee20e commit fa34705
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.3.0] - 2017-07-21
### Added
- Added Symbol#to_i [[#49](https://github.com/ManageIQ/more_core_extensions/pull/49)]
- Added Range#step_value [[#47](https://github.com/ManageIQ/more_core_extensions/pull/47)]
- Added Hash#sort! & #sort_by! [[#46](https://github.com/ManageIQ/more_core_extensions/pull/46)]
- Added Object.descendant_get [[#45](https://github.com/ManageIQ/more_core_extensions/pull/45)]
- Added String#decimal_si_to_f [[#43](https://github.com/ManageIQ/more_core_extensions/pull/43)]

## [3.2.0] - 2017-03-03
### Added
- Added Numeric#clamp [[#30](https://github.com/ManageIQ/more_core_extensions/pull/30)]
Expand Down Expand Up @@ -37,7 +45,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Upgraded to RSpec 3 [[#16](https://github.com/ManageIQ/more_core_extensions/pull/16)]
- Added the Change Log!

[Unreleased]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.0...HEAD
[Unreleased]: https://github.com/ManageIQ/more_core_extensions/compare/v3.3.0...HEAD
[3.3.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.2.0...v3.3.0
[3.2.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.1...v3.2.0
[3.1.1]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.0.0...v3.1.0
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
* `#delete_nils` - Deletes all keys where the value is nil
* core_ext/hash/nested.rb (see [Shared](#shared))
* `#delete_blank_paths` - Deletes all paths where the value is blank
* core_ext/hash/sorting.rb (see [Shared](#shared))
* `#sort!` - Replace the original with the sorted hash
* `#sort_by!` - Replace the original with the sorted_by hash

#### Module

Expand All @@ -74,8 +77,15 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
* core_ext/module/namespace.rb
* `#in_namespace?` - Returns whether or not the object is in the given namespace

#### Range

* core_ext/range/step_value.rb
* `#step_value` - Step through a range at a given increment

#### String

* core_ext/string/decimal_suffix.rb
* `#decimal_si_to_f` - Returns a Float based on the number and suffix given
* core_ext/string/formats.rb
* `#email?` - Returns whether or not the String is an= valid email
* `#domain_name?` - Returns whether or not the String is a valid domain name
Expand All @@ -89,6 +99,11 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
* core_ext/string/iec60027_2.rb
* `#iec_60027_2_to_i` - Convert strings with an IEC60027-2 suffix to an integer

#### Symbol

* core_ext/symbol/to_i.rb
* `#to_i` - Returns the integer value of a symbol

#### Shared

* core_ext/shared/nested.rb
Expand Down
2 changes: 1 addition & 1 deletion lib/more_core_extensions/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MoreCoreExtensions
VERSION = "3.2.0".freeze
VERSION = "3.3.0".freeze
end

0 comments on commit fa34705

Please sign in to comment.