diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.4.0.0
+
+* Exported `Shortcut`.
+* Renamed “brabraumeisterumeister” to “brew” (it still uses Braumeister, but this can change in the future).
+
 # 0.3.0.0
 
 * Added shortcut names to their descriptions.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
 # shortcut-links
 
-Package!
+This package is a database of link shortcuts. A Markdown example:  `[Google](@w)` turns into <http://en.wikipedia.org/wiki/Google>.
+
+It's intended to be used in wikis and text markup converters (such as Pandoc) and anywhere else where humans may be entering links.
diff --git a/shortcut-links.cabal b/shortcut-links.cabal
--- a/shortcut-links.cabal
+++ b/shortcut-links.cabal
@@ -1,5 +1,5 @@
 name:                shortcut-links
-version:             0.3.0.0
+version:             0.4.0.0
 synopsis:            Link shortcuts for use in text markup
 description:
   This package is a database of link shortcuts. A Markdown example: 
diff --git a/src/ShortcutLinks.hs b/src/ShortcutLinks.hs
--- a/src/ShortcutLinks.hs
+++ b/src/ShortcutLinks.hs
@@ -5,6 +5,7 @@
 module ShortcutLinks
 (
   Result(..),
+  Shortcut,
   allShortcuts,
 )
 where
@@ -14,7 +15,7 @@
 import Data.Text (Text)
 import qualified Data.Text as T
 -- shortcut-links
-import ShortcutLinks.All (allShortcuts, Result(..))
+import ShortcutLinks.All
 import ShortcutLinks.Utils (format)
 
 
diff --git a/src/ShortcutLinks/All.hs b/src/ShortcutLinks/All.hs
--- a/src/ShortcutLinks/All.hs
+++ b/src/ShortcutLinks/All.hs
@@ -36,7 +36,7 @@
   -- ** Windows
   chocolatey,
   -- ** OS X
-  braumeister,
+  brew,
   -- ** Linux
   debian, aur, mint, fedora, gentoo, opensuse,
 
@@ -137,7 +137,7 @@
   -- OS
   "gplay googleplay"        .= googleplay,
   "chocolatey"              .= chocolatey,
-  "brew"                    .= braumeister,
+  "brew"                    .= brew,
   -- OS – Linux
   "debian"                  .= debian,
   "aur"                     .= aur,
@@ -653,10 +653,10 @@
 <http://braumeister.org/formula/multimarkdown>
 @
 
-Since all Homebrew formulas are stored in a Github repo anyway, and various sites are merely convenient ways to browse that repo, the “brew” shortcut can point to some other site in the future. Don't use it if you need /specifically/ Braumeister.
+Since all Homebrew formulas are stored in a Github repo anyway, and various sites are merely convenient ways to browse that repo, the “brew” shortcut can point to some other site in the future, depending on which site seems better. Don't use it if you need /specifically/ Braumeister.
 -}
-braumeister :: Shortcut
-braumeister _ q = return $ "http://braumeister.org/formula/" <> q
+brew :: Shortcut
+brew _ q = return $ "http://braumeister.org/formula/" <> q
 
 {- | <https://chocolatey.org Chocolatey> (shortcut: “chocolatey”)
 
