From fdd19b4a4c3b294d46fe7e0b50187290043b48aa Mon Sep 17 00:00:00 2001 From: Luke VanderHart Date: Tue, 9 May 2017 16:04:45 -0400 Subject: [PATCH] upgrade to clojure 1.9-alpha16 --- project.clj | 4 ++-- src/valuehash/api.clj | 2 +- src/valuehash/impl.clj | 2 +- src/valuehash/specs.clj | 2 +- test/valuehash/bench.clj | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/project.clj b/project.clj index d314501..2e003ac 100644 --- a/project.clj +++ b/project.clj @@ -1,8 +1,8 @@ -(defproject org.arachne-framework/valuehash "0.1.0" +(defproject org.arachne-framework/valuehash "0.1.1" :description "Value based hashing for Clojure data" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} - :dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"] + :dependencies [[org.clojure/clojure "1.9.0-alpha16" :scope "provided"] [org.clojure/test.check "0.9.0" :scope "test"] [criterium "0.4.4" :scope "test"]] :repositories [["arachne-dev" "http://maven.arachne-framework.org/artifactory/arachne-dev"]]) diff --git a/src/valuehash/api.clj b/src/valuehash/api.clj index 93d837b..21f478e 100644 --- a/src/valuehash/api.clj +++ b/src/valuehash/api.clj @@ -64,4 +64,4 @@ (defn sha-256-str "Return the sha256 digest of an arbitrary Clojure data structure, as a string" [obj] - (hex-str (sha-256 obj))) \ No newline at end of file + (hex-str (sha-256 obj))) diff --git a/src/valuehash/impl.clj b/src/valuehash/impl.clj index 5d5ba89..42e4888 100644 --- a/src/valuehash/impl.clj +++ b/src/valuehash/impl.clj @@ -108,4 +108,4 @@ (map map-entry->byte-array) (sort ba-comparator) (cons map-sep) - (join-byte-arrays)))) \ No newline at end of file + (join-byte-arrays)))) diff --git a/src/valuehash/specs.clj b/src/valuehash/specs.clj index e8d8946..d19cf81 100644 --- a/src/valuehash/specs.clj +++ b/src/valuehash/specs.clj @@ -1,5 +1,5 @@ (ns valuehash.specs - (:require [clojure.spec :as s])) + (:require [clojure.spec.alpha :as s])) (def byte-array-class (class (byte-array 0))) diff --git a/test/valuehash/bench.clj b/test/valuehash/bench.clj index 7459df3..77b4386 100644 --- a/test/valuehash/bench.clj +++ b/test/valuehash/bench.clj @@ -54,4 +54,4 @@ (bench-complex) - ) \ No newline at end of file + )