From: Joel Holdbrooks Date: Wed, 7 Aug 2013 06:38:39 +0000 (-0700) Subject: Version bump to v0.1.2 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6f6c103f131207d6566ee8e51c34f5dc416d1385;p=frak.git Version bump to v0.1.2 --- diff --git a/README.md b/README.md index e232f38..57e24d0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ backtracking as much as possible. Add frak as a dependency to your `project.clj` file. ```clojure -[frak "0.1.1"] +[frak "0.1.2"] ``` ## Usage @@ -19,7 +19,7 @@ Add frak as a dependency to your `project.clj` file. user> (require 'frak) nil user> (frak/pattern ["foo" "bar" "baz" "quux"]) -#"(?:ba(?:r|z)|foo|quux)" +#"(?:ba[rz]|foo|quux)" user> (frak/pattern ["Clojure" "Clojars" "ClojureScript"]) #"Cloj(?:ure(?:Script)?|ars)" ``` @@ -40,7 +40,7 @@ illustrates this behavior on the second character of each input. ```clojure user> (frak/pattern ["bit" "bat" "ban" "bot" "bar" "box"]) -#"b(?:a(?:t|n|r)|o(?:t|x)|it)" +#"b(?:a[tnr]|o[tx]|it)" ``` ## Why? diff --git a/project.clj b/project.clj index 9638951..95a3aa3 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject frak "0.1.1" +(defproject frak "0.1.2" :description "Transform collections of strings into regular expressions." :url "http://github.com/noprompt/frak" :license {:name "Eclipse Public License"