Skip to content

Commit

Permalink
update released version
Browse files Browse the repository at this point in the history
  • Loading branch information
taf2 committed Dec 22, 2010
1 parent 9c36734 commit 9e9a3db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions curb.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Gem::Specification.new do |s|
s.name = "curb"
s.authors = ["Ross Bamford", "Todd A. Fisher"]
s.version = '0.7.8.1'
s.date = '2010-08-17'
s.version = '0.7.9'
s.date = '2010-12-22'
s.description = %q{Curb (probably CUrl-RuBy or something) provides Ruby-language bindings for the libcurl(3), a fully-featured client-side URL transfer library. cURL and libcurl live at http://curl.haxx.se/}
s.email = 'todd.fisher@gmail.com'
s.extra_rdoc_files = ['LICENSE', 'README']
Expand All @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib','ext']
s.rubyforge_project = 'curb'
s.summary = %q{Ruby libcurl bindings}
s.test_files = ["tests/alltests.rb", "tests/bug_curb_easy_blocks_ruby_threads.rb", "tests/bug_curb_easy_post_with_string_no_content_length_header.rb", "tests/bug_instance_post_differs_from_class_post.rb", "tests/bug_multi_segfault.rb", "tests/bug_postfields_crash.rb", "tests/bug_postfields_crash2.rb", "tests/bug_require_last_or_segfault.rb", "tests/bugtests.rb", "tests/helper.rb", "tests/mem_check.rb", "tests/require_last_or_segfault_script.rb", "tests/tc_curl_download.rb", "tests/tc_curl_easy.rb", "tests/tc_curl_multi.rb", "tests/tc_curl_postfield.rb", "tests/unittests.rb"]
s.test_files = ["tests/alltests.rb", "tests/bug_curb_easy_blocks_ruby_threads.rb", "tests/bug_curb_easy_post_with_string_no_content_length_header.rb", "tests/bug_instance_post_differs_from_class_post.rb", "tests/bug_multi_segfault.rb", "tests/bug_postfields_crash.rb", "tests/bug_postfields_crash2.rb", "tests/bug_require_last_or_segfault.rb", "tests/bugtests.rb", "tests/helper.rb", "tests/mem_check.rb", "tests/require_last_or_segfault_script.rb", "tests/tc_curl_download.rb", "tests/tc_curl_easy.rb", "tests/tc_curl_multi.rb", "tests/tc_curl_postfield.rb", "tests/timeout.rb", "tests/timeout_server.rb", "tests/unittests.rb"]

s.extensions << 'ext/extconf.rb'

Expand Down
8 changes: 4 additions & 4 deletions ext/curb.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
#include "curb_macros.h"

// These should be managed from the Rake 'release' task.
#define CURB_VERSION "0.7.8.1"
#define CURB_VER_NUM 781
#define CURB_VERSION "0.7.9"
#define CURB_VER_NUM 790
#define CURB_VER_MAJ 0
#define CURB_VER_MIN 7
#define CURB_VER_MIC 8
#define CURB_VER_PATCH 1
#define CURB_VER_MIC 9
#define CURB_VER_PATCH 0


// Maybe not yet defined in Ruby
Expand Down

0 comments on commit 9e9a3db

Please sign in to comment.