From a2da6ce8f3d7c4e26ea476bf53812e1fead41af8 Mon Sep 17 00:00:00 2001 From: Daniel Berger Date: Fri, 3 Sep 2010 04:32:04 -0600 Subject: [PATCH] Version bumps and updates to the CHANGES file. --- CHANGES | 4 ++++ lib/net/ping/ping.rb | 2 +- net-ping.gemspec | 2 +- test/test_net_ping.rb | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 5433a60..da04ec7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +== 1.3.5 - 3-Sep-2010 +* Allow for custom user agent in Net::Ping::HTTP. Thanks go to Michael + Reinsch for the patch. + == 1.3.4 - 25-Jun-2010 * Fixed a dumb platform bug. Thanks go to Jason Frey for the spot. diff --git a/lib/net/ping/ping.rb b/lib/net/ping/ping.rb index 2cf8dd1..bfa9a17 100644 --- a/lib/net/ping/ping.rb +++ b/lib/net/ping/ping.rb @@ -10,7 +10,7 @@ module Net # class Ping # The version of the net-ping library. - VERSION = '1.3.4' + VERSION = '1.3.5' # The host to ping. In the case of Ping::HTTP, this is the URI. attr_accessor :host diff --git a/net-ping.gemspec b/net-ping.gemspec index 9793b37..e2dda44 100644 --- a/net-ping.gemspec +++ b/net-ping.gemspec @@ -3,7 +3,7 @@ require 'rbconfig' Gem::Specification.new do |gem| gem.name = 'net-ping' - gem.version = '1.3.4' + gem.version = '1.3.5' gem.license = 'Artistic 2.0' gem.author = 'Daniel J. Berger' gem.email = 'djberg96@gmail.com' diff --git a/test/test_net_ping.rb b/test/test_net_ping.rb index 7b2e8c5..3d93eee 100644 --- a/test/test_net_ping.rb +++ b/test/test_net_ping.rb @@ -21,6 +21,6 @@ class TC_Net_Ping < Test::Unit::TestCase def test_net_ping_version - assert_equal('1.3.4', Net::Ping::VERSION) + assert_equal('1.3.5', Net::Ping::VERSION) end end