From 8949d91d966f5cfcf91903c70ece5314ab81405e Mon Sep 17 00:00:00 2001 From: Toshiki Takeuchi Date: Wed, 5 Apr 2017 19:48:44 +0900 Subject: [PATCH] Release 0.2.1 --- CHANGELOG.md | 6 ++++-- README.md | 8 ++++---- project.clj | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01e7797b..be97a3f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] +## [0.2.1] - 2017-04-06 ### Added @@ -16,6 +16,7 @@ ### Fixed * Fix cider-refresh error. [#33](https://github.com/chrovis/cljam/pull/33) +* Fix StackOverflowError in parse-header of SAM/BAM files. [#38](https://github.com/chrovis/cljam/pull/38) ## [0.2.0] - 2017-02-20 @@ -100,7 +101,8 @@ represents the first three bases of chromosome 1. First release -[Unreleased]: https://github.com/chrovis/cljam/compare/0.2.0...HEAD +[Unreleased]: https://github.com/chrovis/cljam/compare/0.2.1...HEAD +[0.2.1]: https://github.com/chrovis/cljam/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/chrovis/cljam/compare/0.1.6...0.2.0 [0.1.6]: https://github.com/chrovis/cljam/compare/0.1.5...0.1.6 [0.1.5]: https://github.com/chrovis/cljam/compare/0.1.4...0.1.5 diff --git a/README.md b/README.md index 87c572b6..4167bc4c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ cljam is available as a Maven artifact from [Clojars][clojars]. To use with Leiningen/Boot, add the following dependency. ```clojure -[cljam "0.2.0"] +[cljam "0.2.1"] ``` To use with Maven, add the following dependency. @@ -24,7 +24,7 @@ To use with Maven, add the following dependency. cljam cljam - 0.2.0 + 0.2.1 ``` @@ -101,8 +101,8 @@ Run `lein-bin` plugin and it creates standalone console executable into `target` ```console $ lein with-profile +1.8 bin -Created /path/to/cljam/target/cljam-0.2.0.jar -Created /path/to/cljam/target/cljam-0.2.0-standalone.jar +Created /path/to/cljam/target/cljam-0.2.1.jar +Created /path/to/cljam/target/cljam-0.2.1-standalone.jar Creating standalone executable: /path/to/cljam/target/cljam ``` diff --git a/project.clj b/project.clj index 9823a0a1..b1c432a2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject cljam "0.2.1-SNAPSHOT" +(defproject cljam "0.2.1" :description "A DNA Sequence Alignment/Map (SAM) library for Clojure" :url "https://github.com/chrovis/cljam" :license {:name "Apache License, Version 2.0"