diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 650cafe50988eb1a759a4b4e006b2b68ac4bb39a..91a85fda3db67bf3f47e63f0227f7af3ae5630ba 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,6 +1,13 @@ +== ipaddress 0.8.2 + +FIXED:: IPAddress::IPv4.split handling (Issue #40) +NEW:: IPV4#multicast? +NEW:: IPV4#loopback? +NEW:: IPV4#to() + == ipaddress 0.8.1 -CHANGED:: ipaddress now uses minitest for testing, all tests passing +CHANGED:: ipaddress now uses minitest for testing, all tests passing == ipaddress 0.8.0 diff --git a/LICENSE b/LICENSE index 25def2b89772e4fd0bcc75703e729b0442e8f9b5..943eee1df11f4ef6ea612fec679296e723dc2b81 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009-2011 Marco Ceresa +Copyright (c) 2009-2015 Marco Ceresa Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/VERSION b/VERSION index c18d72be3037fd3f56293ca5635965d1e53bcd2a..53a48a1e8c640f61bd1ad6dae1178602e97c7bfa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.1 \ No newline at end of file +0.8.2 \ No newline at end of file diff --git a/ipaddress.gemspec b/ipaddress.gemspec index 67d3f9bf40672fe2ee2dd2f300e9bdc9b8ca8cfa..7399c21be7baf4f852012d0bb31bde39acc83666 100644 --- a/ipaddress.gemspec +++ b/ipaddress.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{ipaddress} - s.version = "0.8.1" + s.version = IO.read("VERSION") s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Marco Ceresa"] - s.date = %q{2011-05-17} + s.authors = ["Marco Ceresa", "Mike Mackintosh"] + s.date = %q{2015-03-22} s.description = %q{ IPAddress is a Ruby library designed to make manipulation of IPv4 and IPv6 addresses both powerful and simple. It mantains a layer of compatibility with Ruby's own IPAddr, while