caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Richard Jones <rich@annexia.org>
To: caml-list@inria.fr
Subject: [ANNOUNCE] ocaml-bitstring 1.9.6 (formerly known as ocaml-bitmatch)
Date: Thu, 17 Jul 2008 13:41:44 +0100	[thread overview]
Message-ID: <20080717124143.GA21377@annexia.org> (raw)

I'm please to announce version 1.9.6 of ocaml-bitstring (formerly
known as ocaml-bitmatch).  The home page has changed again, so please
update any bookmarks or links to point to the new home page here:

  http://code.google.com/p/bitstring/

Version 1.9.6 features 'check()', 'bind()' and 'save_offset_to()'
qualifiers which give you much greater control over the matching
process.  For example:

  bitmatch packet with
  | { len  : 16  : check (len > 0), bind (len*8);
      data : len : string;
      crc  : 32  : check (crc_ok data crc), save_offset_to (crc_offset)
    } ->
    printf "length of data (in bits) = %d\n" len;
    printf "offset of CRC in packet (in bits) = %d\n" crc_offset

  | { _ } -> printf "bad packet\n"

We have also fixed some bugs, clarified the licensing everywhere (for
Debian), and improved the META file.

A troublesome company sent my employer a Cease and Desist notice,
claiming that their trademark on the word "BitMatch" for "Computer
software for comparing and analyzing computer software"[sic] covered
ocaml-bitmatch.  No such thing is true, but because of the time and
expense of dealing with the legal process we have decided to rename
ocaml-bitmatch to ocaml-bitstring for their benefit (still very
time-consuming).  As a result, we are gradually moving the old
website, wiki etc. to the new home page above, and some internals will
change (code will be backwards-compatible, but you may need to make
some changes to build scripts).  Thanks to Sylvain Le Gall for
offering hosting.

Rich.


                 reply	other threads:[~2008-07-17 12:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080717124143.GA21377@annexia.org \
    --to=rich@annexia.org \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).