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

  (define release-notes
    (list "3.5: Updated for-each functions to return void regardless of "
          "return value from the given function."))
  
  (define categories '(datastructures))

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

  )