From a70d2518a9e9bb6f01a7179fab1f9d27d8f87bb6 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Thu, 26 Feb 2015 15:11:21 -0500 Subject: [PATCH] clean up readme, add clojars link --- NOTICE | 2 -- README.md | 8 ++++++++ 2 files changed, 8 insertions(+), 2 deletions(-) delete mode 100644 NOTICE diff --git a/NOTICE b/NOTICE deleted file mode 100644 index 673334d..0000000 --- a/NOTICE +++ /dev/null @@ -1,2 +0,0 @@ -Specter -Copyright 2015 Red Planet Labs diff --git a/README.md b/README.md index 253565b..1d43c02 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,12 @@ Deep introspection and transformation of data Specter is a library for concisely querying and updating nested data structures. One way to think of it is "get-in" and "assoc-in" on steroids. It is similar to the concept of a "lens" in functional programming, though it has some important extensions. +# Latest Version + +The latest release version of Specter is hosted on [Clojars](https://clojars.org): + +[![Current Version](https://clojars.org/com.rpl/specter/latest-version.svg)](https://clojars.org/com.rpl/specter) + # How to use The usage of Specter will be explained via example. Suppose you have a sequence of maps, and you want to extract all the even values for :a keys. Here's how you do it: @@ -85,4 +91,6 @@ Finally, you can make `select` and `update` work much faster by precompiling you - Any connection to transducers? - Add Clojurescript compatibility +# License +Copyright 2015 Red Planet Labs. Specter is licensed under Apache License v2.0.