Skip to content

Commit

Permalink
2.0.1. Updated dependencies to newer versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
japonophile committed Mar 9, 2016
1 parent 04bbef9 commit c9e333d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
lib/*.jar
/target
/lib
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
.lein-repl-history
4 changes: 4 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ The following the main API functions that you will use as a consumer of the libr
* `necessary-evil.fault/fault?` — Predicate that tests a value for being a Fault record.
* `necessary-evil.fault/attempt-all` — A comprehension form to make it easier to work with potentially Fault returning functions. For more detail on this macro see my [Error Monads](http://brehaut.net/blog/2011/error_monads#attempt_all) and [Error Monads Revisited ](http://brehaut.net/blog/2011/error_monads_revisited) blog posts.

## Changes from 2.0.0 to 2.0.1

* Updated dependencies to newer versions

## Changes from 1.2.2 to 2.0.0

Despite the big jump in version numbers relatively small changes have occured.
Expand Down
14 changes: 7 additions & 7 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
(defproject necessary-evil "2.0.0"
(defproject necessary-evil "2.0.1"
:description "An implementation of XML-RPC for the Clojure Ring HTTP stack"

:url "https://github.com/brehaut/necessary-evil/"
:scm {:url "git://github.com/brehaut/necessary-evil.git"}
:license {:name "Eclipse Public License",
:url "http://www.eclipse.org/legal/epl-v10.html"}

:dependencies {org.clojure/clojure "1.4.0",
org.clojure/data.zip "0.1.0",
org.clojure/algo.monads "0.1.3-20120910.070123-6", ; lock to a specific snapshot
:dependencies {org.clojure/clojure "1.7.0",
org.clojure/data.zip "0.1.1",
org.clojure/algo.monads "0.1.5",
clj-http "0.5.8",
commons-codec "1.4",
clj-time "0.4.4",
commons-codec "1.9",
clj-time "0.9.0",
commons-lang "2.6"}
:profiles {:dev {:dependencies {ring/ring-jetty-adapter "1.0.1", marginalia "0.7.0-SNAPSHOT"}
:plugins {lein-marginalia "0.7.0-SNAPSHOT"}}}
Expand All @@ -23,4 +23,4 @@
[:name "Andrew Brehaut"]
[:url "http://brehaut.net"]
[:email "andrew@brehaut.net"]
[:timezone "+12"]]])
[:timezone "+12"]]])

0 comments on commit c9e333d

Please sign in to comment.