File: History.txt

package info (click to toggle)
ruby-ffi-rzmq-core 1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 192 kB
  • sloc: ruby: 524; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
== 1.0.7
  * Provide a wrapper function for calling context termination. Zeromq 3.x
    uses zmq_ctx_destroy to terminate a context. While this function exists
    in Zeromq 4.x, it is deprecated. For 4.x, we prefer to use zmq_ctx_term.
    When loading the library, we define a `terminate_context` method on the
    module which defaults to using the 3.x function call. If the 4.x support
    loads, then this method is overwritten to use the 4.x function call.