From acb36547a12b523a10a335b16cf8bf310bf6ccdb Mon Sep 17 00:00:00 2001 From: Todd Fisher Date: Sat, 15 Feb 2025 09:39:38 -0500 Subject: [PATCH] bump version for release --- curb.gemspec | 4 ++-- ext/curb.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/curb.gemspec b/curb.gemspec index be20f8f..7903155 100644 --- a/curb.gemspec +++ b/curb.gemspec @@ -1,8 +1,8 @@ Gem::Specification.new do |s| s.name = "curb" s.authors = ["Ross Bamford", "Todd A. Fisher"] - s.version = '1.0.8' - s.date = '2025-02-10' + s.version = '1.0.9' + s.date = '2025-02-15' 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.markdown'] diff --git a/ext/curb.h b/ext/curb.h index 908945e..46b3dc1 100644 --- a/ext/curb.h +++ b/ext/curb.h @@ -28,11 +28,11 @@ #include "curb_macros.h" // These should be managed from the Rake 'release' task. -#define CURB_VERSION "1.0.8" -#define CURB_VER_NUM 1008 +#define CURB_VERSION "1.0.9" +#define CURB_VER_NUM 1009 #define CURB_VER_MAJ 1 #define CURB_VER_MIN 0 -#define CURB_VER_MIC 8 +#define CURB_VER_MIC 9 #define CURB_VER_PATCH 0