info.ss
(module info (lib "infotab.ss" "setup")

  (define name "Combinators")

  (define blurb '("Useful, higher-order functions."))

  (define release-notes
    '((ul
       (li "1.4:"
           (ul (li "added map/values and fold/values")
               (li "updated test suite to automatically run w/GUI")))
       (li "1.3:"
           (ul (li "added negate, conjoin, and disjoin")
               (li "added test suite")))
       (li "1.2: allowed multiple package versions to coexist")
       (li "1.1: added BSD-style license")
       (li "1.0: initial release"))))

  (define categories '(devtools))

  (define can-be-loaded-with 'all)

  (define doc.txt "doc.txt")

  (define primary-file "combinators.ss")

  )