From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, T_RP_MATCHES_RCVD,URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: ruby-posix-mq@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPSA id DEA911F453; Fri, 16 Jan 2015 20:32:18 +0000 (UTC) Date: Fri, 16 Jan 2015 20:32:18 +0000 From: Eric Wong To: ruby-talk@ruby-lang.org, ruby-posix-mq@bogomips.org Cc: Christopher Lord Subject: [ANN] posix_mq 2.2.0 - POSIX Message Queues for Ruby Message-ID: <20150116203218.GA27229@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: POSIX message queues allow local processes to exchange data in the form of messages. This API is distinct from that provided by System V message queues, but provides similar functionality. * Homepage: http://bogomips.org/ruby_posix_mq/ * public-inbox: ruby-posix-mq@bogomips.org * git clone git://bogomips.org/ruby_posix_mq.git * Atom feed: http://bogomips.org/ruby_posix_mq/NEWS.atom.xml * Mailing list archives: http://bogomips.org/ruby-posix-mq/ Changes: The major feature of this release is the POSIX_MQ.for_fd class method thanks to Christopher Lord. The addition of the POSIX_MQ#autoclose? and POSIX_MQ#autoclose= round out the new feature set. All of the new methods are analogous to their counterparts in the core IO class. The mailing list is also moved to ruby-posix-mq@bogomips.org and no longer requires subscription. Existing librelist subscribers will need to resubscribe manually (as I have no way of doing so automatically): ruby-posix-mq+subscribe@bogomips.org HTTP archives and instructions for extracting the mail archives via git are available at: http://bogomips.org/ruby-posix-mq/ Christopher Lord (1): Ability to adopt file descriptors Eric Wong (16): for_fd: delay assigning to mq->des until after mq_getattr test_posix_mq: rewrite test to not depend on DL or alarm support autoclose= and autoclose? pack rw_args struct change mailing list to ruby-posix-mq@bogomips.org doc: remove --sanitize-html option for pandoc switch documentation to olddoc LICENSE: allow all future versions of LGPLv3+ favor comparisons against zero instead of -1 pkg.mk: misc tweaks and updates gemspec: remove rdoc_options setting .gitignore: add placeholder gemspec: use SPDX license abbreviation misc doc updates POSIX_MQ#autoclose= propagates to IO GNUmakefile: ordering fix for building gem -- EW