Skip to content

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Nov 21, 2018
1 parent b5803a9 commit 0cfc5ca
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [Unreleased]
## [0.7.0] - 2018-11-21

### BREAKING

Expand Down Expand Up @@ -331,7 +331,8 @@ represents the first three bases of chromosome 1.

First release

[Unreleased]: https://github.com/chrovis/cljam/compare/0.6.0...HEAD
[Unreleased]: https://github.com/chrovis/cljam/compare/0.7.0...HEAD
[0.7.0]: https://github.com/chrovis/cljam/compare/0.6.0...0.7.0
[0.6.0]: https://github.com/chrovis/cljam/compare/0.5.1...0.6.0
[0.5.1]: https://github.com/chrovis/cljam/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/chrovis/cljam/compare/0.4.1...0.5.0
Expand Down
23 changes: 10 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,23 @@ A DNA Sequence Alignment/Map (SAM) library for Clojure. [[API Reference]][api-re

cljam is available as a Maven artifact from [Clojars](https://clojars.org/cljam).

To use with Leiningen/Boot, add the following dependency.
Clojure CLI/deps.edn:

```clojure
[cljam "0.6.0"]
cljam {:mvn/version "0.7.0"}
```

To use with Maven, add the following dependency.
Leiningen/Boot:

```xml
<dependency>
<groupId>cljam</groupId>
<artifactId>cljam</artifactId>
<version>0.6.0</version>
</dependency>
```clojure
[cljam "0.7.0"]
```

## Breaking changes in 0.6.0
## Breaking changes in 0.7.0

* N padding for out-of-range bases is **not** appended. See [#120 comment](https://github.com/chrovis/cljam/pull/120#issuecomment-343369370) and [#121](https://github.com/chrovis/cljam/pull/121) for more information.
* `cljam.io.protocols/{reader,writer}-path` were renamed to `cljam.io.protocols/{reader,writer}-url`. Their return values are `java.net.URL`.
* Strand representation is changed to keyword (`:forward`, `:reverse`).
* Chromosome name normalization is decoupled from BED i/o.
* Pileup module is entirely rewritten. See [#140](https://github.com/chrovis/cljam/pull/140) for more information.

## Getting started

Expand Down Expand Up @@ -162,7 +159,7 @@ Sorted by first commit.

Copyright 2013-2018 [Xcoo, Inc.](https://xcoo.jp/)

Licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
Licensed under the [Apache License, Version 2.0](LICENSE).

[api-reference]: https://chrovis.github.io/cljam/docs
[annotated-source]: https://chrovis.github.io/cljam/literate
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.6.1-SNAPSHOT"
(defproject cljam "0.7.0"
: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 0cfc5ca

Please sign in to comment.