info.ss
(module info (lib "infotab.ss" "setup")
  
  (define name "Galore")
  
  (define blurb
    (list "A library of functional data structures. "
          "Version 4 is currently beta software. "
          "Use Galore version 2 for most purposes. "))

  (define release-notes
    (list "4.2: Updated cce/scheme.plt dependency to version 4.1."
          "4.1: Updated comprehensions to new PLT SRFI-42 library; "
          "added scribble docs.  "
          "4.0: Updated to be compatible with PLT Scheme version 4.0."))
  
  (define categories '(datastructures))

  (define can-be-loaded-with 'all)
  
  (define primary-file "[bag.ss|set.ss|table.ss]")

  (define repositories '("4.x"))

  (define scribblings '(("doc.scrbl" (multi-page))))
  )