Skip to content

Commit

Permalink
Prepare for release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
taf2 committed Aug 23, 2024
1 parent 30aa6a2 commit b08a007
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Change Log
## 1.0.6
* Fix for PUT request length calculation
- see: #451
* Fix a double quote issue when evaluating cert's path
- see: #454

## 1.0.5
* Add shorter response_code alias -> code
```
Expand Down
2 changes: 1 addition & 1 deletion curb.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = "curb"
s.authors = ["Ross Bamford", "Todd A. Fisher"]
s.version = '1.0.5'
s.version = '1.0.6'
s.date = '2023-01-04'
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'
Expand Down
6 changes: 3 additions & 3 deletions ext/curb.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
#include "curb_macros.h"

// These should be managed from the Rake 'release' task.
#define CURB_VERSION "1.0.5"
#define CURB_VER_NUM 1005
#define CURB_VERSION "1.0.6"
#define CURB_VER_NUM 1006
#define CURB_VER_MAJ 1
#define CURB_VER_MIN 0
#define CURB_VER_MIC 5
#define CURB_VER_MIC 6
#define CURB_VER_PATCH 0


Expand Down

0 comments on commit b08a007

Please sign in to comment.