All Versions
33
Latest Version
Avg Release Cycle
64 days
Latest Release
752 days ago

Changelog History
Page 2

  • v0.5.5 Changes

    May 13, 2019

    βž• Added

    • Safety policy in README
    • Fixnum.to_u64, thanks to @irxground
    • Integer.to_u64, thanks to @irxground
    • impl From<u64> for Integer, thanks to @irxground
    • impl Into<u64> for Integer, thanks to @irxground
    • impl From<i32> for Integer, thanks to @irxground
    • impl From<u32> for Integer, thanks to @irxground
    • impl Into<u32> for Integer, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_uint2inum, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_ll2inum, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_ull2inum, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2short, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2ushort, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2uint, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2ulong, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2ll, thanks to @irxground
    • πŸ’Ž rubysys::fixnum::rb_num2ull, thanks to @irxground

    πŸ”„ Changed

    • Integer is_correct_type to permit Bignum, thanks to @irxground
    • rubysys::fixnum::rb_num2int returns libc::c_long rather than c_int, thanks to @irxground

    πŸ›  Fixed

    • πŸ— symlink check in build.rs which had rare systems in which exists didn't work on symlink, thanks to @ekump
  • v0.5.4 Changes

    April 15, 2019

    βž• Added

    • GC::adjust_memory_usage, thanks to @Antti
    • πŸ’Ž examples/rutie_ruby_gvl_example, thanks to @dsander
    • GC::count
    • GC::disable
    • GC::enable
    • GC::force_recycle
    • GC::mark_locations
    • GC::mark_maybe
    • GC::register
    • GC::start
    • GC::stat
    • GC::unregister
    • util::inmost_rb_object which is a string recurse tool to get nested ruby objects

    πŸ›  Fixed

    • πŸ“š GC::mark documentation notes.
    • util::closure_to_ptr from 'static + FnOnce to FnMut, thanks to @dsander
    • Thread::new from 'static + FnOnce to FnMut, thanks to @dsander
    • Thread::call_without_gvl from 'static + FnOnce to FnMut, thanks to @dsander
    • Thread::call_without_gvl2 from 'static + FnOnce to FnMut, thanks to @dsander
    • Thread::call_with_gvl from 'static + FnOnce to FnMut, thanks to @dsander
    • πŸ‘» AnyException::new to work with nested exception classes
  • v0.5.3 Changes

    January 10, 2019

    βž• Added

    • util::is_proc & util::is_method
    • rb_enc_compatible useful for internal string encoding compatibilty checks from which we now have binding::is_compatible_encoding and binding::compatible_encoding
    • RString.compatible_with as the public API for rb_enc_compatible with trait EncodingSupport
    • RString::compatible_encoding as the public API for rb_enc_compatible with trait EncodingSupport
    • impl Deref for AnyException
    • impl Deref for AnyObject
    • impl Borrow<Value> for AnyObject
    • impl Borrow<Value> for AnyException
    • impl AsRef<Value> for AnyObject
    • impl AsRef<Value> for AnyException
    • impl AsRef<AnyObject> for AnyObject
    • impl AsRef<AnyException> for AnyException
    • impl<T: Object> From<&T> for AnyObject

    πŸ”„ Changed

    • βœ‚ Removed Ruby 2.3 support & added 2.6
    • VM::raise_ex now accepts Into<AnyException> rather than just AnyException
    • πŸ”¨ Refactor internal encoding types
    • πŸ”¨ Refactor build.rs script to use Ruby provided cflags

    βœ‚ Removed

    • πŸ— pkg-config-rs removed from Rutie and from the build process
  • v0.5.2 Changes

    December 18, 2018

    βž• Added

    • impl Into<i32> for Integer thanks to @Antti
    • Integer.to_i32, thanks to @Antti
    • Fixname.to_i32, thanks to @Antti

    πŸ›  Fixed

    • Integer.to_i64 to use rb_num2long for genuine i64 result, thanks to @Antti
    • impl Into<i64> for Integer to use rb_num2long for genuine i64 result, thanks to @Antti
    • Fixname.to_i64 to use rb_num2long for genuine i64 result, thanks to @Antti
  • v0.5.1 Changes

    December 11, 2018

    βž• Added

    • 🏁 Windows build support (partially working)
    • πŸ— Mac static build support, thanks to @felix-d
    • Rutie pronunciation guide
  • v0.5.0 Changes

    October 23, 2018

    πŸ”„ Changed

    • CodepointIterator now borrows RString parameter instead of consuming ownership
  • v0.4.3 Changes

    October 23, 2018

    πŸ›  Fixed

    • RString.codepoints uses a new internal implementation as rb_str_codepoints isn't exported/available on some OSes
  • v0.4.2 Changes

    October 16, 2018

    πŸ›  Fixed

    • πŸ“š Wrapping struct changed from Ruru to Rutie & some of the same changes in documentation, thanks to @turboladen
  • v0.4.1 Changes

    October 04, 2018

    βž• Added

    • πŸ— Static build support
  • v0.4.0 Changes

    August 20, 2018

    βž• Added

    • Methods VM::yield_object and VM::yield_splat
    • Enumerator object
    • Array.to_enum
    • TryConvert for AnyException
    • VM::error_info and VM::clear_error_info
    • πŸ“š Documentation for VM::protect
    • Binding
    • Into<Value> for all types which impl Object
    • Into<AnyObject> for all types which impl Object
    • From<i64> and Into<i64> for Integer
    • From<&'static str> for RString
    • eval!() macro with binding, filename, linenum for optional arguments
    • πŸ’Ž rubysys::rproc::check_arity for simple numeric bounds checking
    • Symbol.to_proc
    • Proc.is_lambda

    πŸ”„ Changed

    • Object.protect_send and Object.protect_public_send have changed the first parameter from requiring String to &str
    • VM::protect returns Result<AnyObject, i32> rather than Result<Value, i32>
    • πŸ’Ž PartialEq is now implemented for Ruby objects via the == method