From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 88525 invoked by alias); 2 Nov 2017 13:57:56 -0000 Mailing-List: contact infinity-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Post: List-Help: List-Subscribe: Sender: infinity-owner@sourceware.org Received: (qmail 88491 invoked by uid 89); 2 Nov 2017 13:57:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=installs, 006, Hx-languages-length:1721 X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 02 Nov 2017 13:57:54 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D0BA75F73C for ; Thu, 2 Nov 2017 13:57:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com D0BA75F73C Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=gbenson@redhat.com Received: from blade.nx (ovpn-116-79.ams2.redhat.com [10.36.116.79]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9B19060CA0 for ; Thu, 2 Nov 2017 13:57:52 +0000 (UTC) Received: by blade.nx (Postfix, from userid 1000) id CE6768236A74; Thu, 2 Nov 2017 13:57:51 +0000 (GMT) Date: Thu, 02 Nov 2017 13:57:00 -0000 From: Gary Benson To: infinity@sourceware.org Subject: I8C 0.0.6 released Message-ID: <20171102135750.GA32115@blade.nx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: Red Hat UK Ltd, 64 Baker Street, 4th Floor, W1U 7DF, UK. Registered in England and Wales (3798903) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Thu, 02 Nov 2017 13:57:52 +0000 (UTC) X-IsSubscribed: yes X-SW-Source: 2017-q4/txt/msg00003.txt.bz2 I8C 0.0.6 released! Release 0.0.6 of I8C, the Infinity Note Compiler, is now available. This includes I8X, an interpreter for unit testing compiled notes. You can install I8C and I8X directly using pip: pip install -U --user i8c # installs in your home directory sudo pip install -U i8c # installs as root The source is available from infinitynotes.org: https://infinitynotes.org/src/i8c/i8c-0.0.6.tar.xz (md5sum ad321c0cf08f49d54b19113692877796) There is a web page for I8C at: https://infinitynotes.org/wiki/I8C That page includes information about the Infinity mailing list, details on how to access I8C's source repository, and information about the Infinity system in general. I8C 0.0.6 brings new features and improvements, including: * I8X will now use libi8x to execute Infinity functions if libi8x and its Python bindings are installed. The original Python interpreter has been retained as a fallback but will be removed in a future I8C release. * I8X now correctly determines names for referenced symbols in many more configurations, and now fails gracefully when names cannot be determined. * Infinity functions provided by testcases are now identified using the @TestCase.provide decorator. The function TestCase.implement has been removed. * The interpreter context is no longer accessible as TestCase.i8ctx. Infinity functions should now be executed using TestCase.call. * TestCase.warn_caller is now called with two arguments, the first being the signature of the Infinity function emitting the warning and the second being the warning message as before. For a complete list and more details on each item, please see the NEWS.rst file. -- https://infinitynotes.org/