From d56dca3643a867fd28fdd618f4311a569025bdbb Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Fri, 28 Jun 2019 10:05:24 +0100 Subject: [PATCH] Upversion to 0.2.1 mainly to test Circle CI integration --- README.md | 4 +++- project.clj | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0a62f82..f5547cf 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ Arbitrary numbers of dimensions are supported, up to limits imposed by the JVM s [![Clojars Project](https://img.shields.io/clojars/v/sparse-array.svg)](https://clojars.org/sparse-array) +[![CircleCI](https://circleci.com/gh/simon-brooke/sparse-array.svg?style=svg)](https://circleci.com/gh/simon-brooke/sparse-array) + ## Conventions: ### Sparse arrays @@ -210,7 +212,7 @@ e.g. ### extract-from-dense -Note that the above example returns the default axis sequence {i0, i1, i2...}; +Note that the above example returns the default axis sequence `{i0, i1, i2...}`; extracting from a sparse array will always retain the axes of the array extracted from. Dense arrays, obviously, do not have explicit axes. diff --git a/project.clj b/project.clj index 4ffcbee..d36a1dd 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject sparse-array "0.2.0" +(defproject sparse-array "0.2.1" :description "A Clojure library designed to manipulate sparse *arrays* - multi-dimensional spaces accessed by indices, but containing arbitrary values rather than just numbers. For sparse spaces which contain numbers only, you're better to use a *sparse matrix* library, for example [clojure.core.matrix](https://mikera.github.io/core.matrix/)." :url "http://example.com/FIXME" :license {:name "Eclipse Public License"