Skip to content

Commit e032f0b

Browse files
committed
bump version
1 parent 38fe2b6 commit e032f0b

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.rubocop.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Naming/InclusiveLanguage:
2020
- lib/kanrisuru/core/dmi.rb
2121
- spec/unit/core/dmi_spec.rb
2222

23+
Naming/MethodParameterName:
24+
Exclude:
25+
- spec/functional/os_package_spec.rb
26+
2327
Metrics/AbcSize:
2428
Enabled: false
2529

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
## Kanrisuru 0.7.0 (August 8, 2021) ##
2+
* Simplify `FileInfo` struct for return object of `ls` command.
3+
* Rename `size` to `fsize` for the `OpenFile` struct to avoid method naming conflicts of the struct class.
4+
* Allow `os_include` and `os_collection` to define multiple groupings of methods with the same namespace.
5+
* Add `clear` method for remote env class, to remove any session based env variables.
6+
* Add `to_s` method to result for quick analysis of string based return values.
7+
* Remove duplicate `numeric` method in the utils module.
8+
19
## Kanrisuru 0.6.0 (August 1, 2021) ##
2-
* Add lsof implementation in system core module
10+
* Add `lsof` implementation in system core module
311
* Fix changelog formatting
412
* Add changelog url to gemspec
513

@@ -42,7 +50,6 @@
4250
* Fix `address_size` in `cpu` method call.
4351

4452
## Kanrisuru 0.3.0 (July 22, 2021) ##
45-
4653
* Add `lscpu` system core module
4754
* Replace `cpu` module internal fetching of data from `cpu_info` to `lscpu` struct.
4855

kanrisuru.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
2828

2929
gem.metadata = {
3030
'source_code_uri' => 'https://github.com/avamia/kanrisuru/',
31-
'changelog_uri' => 'https://github.com/avamia/kanrisuru/blob/main/CHANGELOG.md'
31+
'changelog_uri' => 'https://github.com/avamia/kanrisuru/blob/main/CHANGELOG.md'
3232
}
3333
end

lib/kanrisuru/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Kanrisuru
4-
VERSION = '0.6.0'
4+
VERSION = '0.7.0'
55
end

0 commit comments

Comments
 (0)