Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Apr 5, 2017
1 parent 3000f4c commit 8949d91
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [Unreleased]
## [0.2.1] - 2017-04-06

### Added

Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -24,7 +24,7 @@ To use with Maven, add the following dependency.
<dependency>
<groupId>cljam</groupId>
<artifactId>cljam</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
```

Expand Down Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 8949d91

Please sign in to comment.