2.0.9
This commit is contained in:
parent
b78b558fb7
commit
9691f4bbf7
|
@ -4,6 +4,9 @@ Fork of hyperic/sigar with some fixes. Support only ruby binding. Part of [Eye g
|
|||
|
||||
## Fixed:
|
||||
|
||||
### [2.0.9] 28-06-2021
|
||||
* Fix compilation on FreeBSD 13 [#8](https://github.com/kostya/sigar/issues/10)([commit](https://github.com/kostya/sigar/commit/b78b558fb756a75dc7d6cbf704423be3c7098ae5))
|
||||
|
||||
### [2.0.8] 02-10-2020
|
||||
* Fix compilation on MacOS [#8](https://github.com/kostya/sigar/issues/8)([commit](https://github.com/kostya/sigar/pull/9/commits/ad39547629fa328e115f7d7bc3c7c358247d1961))
|
||||
|
||||
|
|
1
Rakefile
1
Rakefile
|
@ -27,7 +27,6 @@ spec = Gem::Specification.new do |s|
|
|||
s.email = props['project.email']
|
||||
s.homepage = props['project.homepage']
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.has_rdoc = false
|
||||
s.extensions = 'bindings/ruby/extconf.rb'
|
||||
s.files =
|
||||
%w(LICENSE NOTICE README.md Rakefile version.properties) +
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "kostya-sigar"
|
||||
s.version = "2.0.8"
|
||||
s.version = "2.0.9"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.require_paths = ["lib"]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
copyright.year=2004-2011
|
||||
version.major=2
|
||||
version.minor=0
|
||||
version.maint=8
|
||||
version.maint=9
|
||||
version.build=0
|
||||
project.name=kostya-sigar
|
||||
project.author=Doug MacEachern
|
||||
|
|
Loading…
Reference in New Issue