Skip to content

Commit fa34705

Browse files
committed
Release v3.3.0
1 parent 31ee20e commit fa34705

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [3.3.0] - 2017-07-21
8+
### Added
9+
- Added Symbol#to_i [[#49](https://github.com/ManageIQ/more_core_extensions/pull/49)]
10+
- Added Range#step_value [[#47](https://github.com/ManageIQ/more_core_extensions/pull/47)]
11+
- Added Hash#sort! & #sort_by! [[#46](https://github.com/ManageIQ/more_core_extensions/pull/46)]
12+
- Added Object.descendant_get [[#45](https://github.com/ManageIQ/more_core_extensions/pull/45)]
13+
- Added String#decimal_si_to_f [[#43](https://github.com/ManageIQ/more_core_extensions/pull/43)]
14+
715
## [3.2.0] - 2017-03-03
816
### Added
917
- Added Numeric#clamp [[#30](https://github.com/ManageIQ/more_core_extensions/pull/30)]
@@ -37,7 +45,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3745
- Upgraded to RSpec 3 [[#16](https://github.com/ManageIQ/more_core_extensions/pull/16)]
3846
- Added the Change Log!
3947

40-
[Unreleased]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.0...HEAD
48+
[Unreleased]: https://github.com/ManageIQ/more_core_extensions/compare/v3.3.0...HEAD
49+
[3.3.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.2.0...v3.3.0
4150
[3.2.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.1...v3.2.0
4251
[3.1.1]: https://github.com/ManageIQ/more_core_extensions/compare/v3.1.0...v3.1.1
4352
[3.1.0]: https://github.com/ManageIQ/more_core_extensions/compare/v3.0.0...v3.1.0

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ MoreCoreExtensions are a set of core extensions beyond those provided by ActiveS
5151
* `#delete_nils` - Deletes all keys where the value is nil
5252
* core_ext/hash/nested.rb (see [Shared](#shared))
5353
* `#delete_blank_paths` - Deletes all paths where the value is blank
54+
* core_ext/hash/sorting.rb (see [Shared](#shared))
55+
* `#sort!` - Replace the original with the sorted hash
56+
* `#sort_by!` - Replace the original with the sorted_by hash
5457

5558
#### Module
5659

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

80+
#### Range
81+
82+
* core_ext/range/step_value.rb
83+
* `#step_value` - Step through a range at a given increment
84+
7785
#### String
7886

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

102+
#### Symbol
103+
104+
* core_ext/symbol/to_i.rb
105+
* `#to_i` - Returns the integer value of a symbol
106+
92107
#### Shared
93108

94109
* core_ext/shared/nested.rb

lib/more_core_extensions/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module MoreCoreExtensions
2-
VERSION = "3.2.0".freeze
2+
VERSION = "3.3.0".freeze
33
end

0 commit comments

Comments
 (0)