This commit is contained in:
Godfrey Chan 2018-06-02 10:43:45 +09:00
parent be0cffa442
commit 98b003c5bb
5 changed files with 14 additions and 7 deletions

View File

@ -1,3 +1,10 @@
## 0.7.4 (June 2, 2018)
* [BUGFIX] Ensure classes with a `struct` also defines `initialize`
* [BUGFIX] Ensure Ruby Strings have the correct encoding before performing coercion
* [BUGFIX] Abort rake task when `cargo build` fails
* [IMPROVEMENT] Add coercion for tuples
## 0.7.3 (March 6, 2018)
* [IMPROVEMENT] Various improvements to the underlying `libcruby-sys` library

View File

@ -1,6 +1,6 @@
[package]
name = "helix"
version = "0.7.3"
version = "0.7.4"
authors = ["Godhuda <engineering+godhuda@tilde.io>"]
description = "Embed Rust in your Ruby"
documentation = "https://usehelix.com/documentation"
@ -28,7 +28,7 @@ libc = "0.2.0"
[dependencies.libcruby-sys]
path = "crates/libcruby-sys"
version = "0.7.3"
version = "0.7.4"
[dependencies.cstr-macro]
path = "crates/cstr-macro"

View File

@ -1,6 +1,6 @@
[package]
name = "libcruby-sys"
version = "0.7.3"
version = "0.7.4"
authors = ["Godhuda <engineering+godhuda@tilde.io>"]
description = "Ruby bindings"
repository = "https://github.com/tildeio/helix"
@ -11,8 +11,8 @@ include = [
"Cargo.toml",
"ruby_info.rb",
# Keep in sync with version
"helix-runtime-0-7-3.i386.lib",
"helix-runtime-0-7-3.x86_64.lib"
"helix-runtime-0-7-4.i386.lib",
"helix-runtime-0-7-4.x86_64.lib"
]
[dependencies]

View File

@ -7,7 +7,7 @@
#include <helix_runtime.h>
// Update with version.rb
const char* HELIX_RUNTIME_VERSION = "0.7.3";
const char* HELIX_RUNTIME_VERSION = "0.7.4";
const char* HELIX_PRIsVALUE = PRIsVALUE;
const char* HELIX_SPRINTF_TO_S = "%" PRIsVALUE;

View File

@ -1,5 +1,5 @@
module HelixRuntime
# Also update helix_runtime.c
VERSION = "0.7.3"
VERSION = "0.7.4"
GEM_VERSION = VERSION.gsub("-", ".")
end