Skip to content

Commit

Permalink
preping for hotfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjohnwright committed May 20, 2019
1 parent 09dd3dc commit dda13d1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.9.6] - 2018-05-20
- fixing handling of multiple 5 prime and/or 3 prime utr on transcripts and cds sequence pages

## [0.9.5] - 2018-05-18
- fix for #6490 (off by one error with variation molecular details widget)

Expand Down
2 changes: 1 addition & 1 deletion Dockerrun.aws.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AWSEBDockerrunVersion": 1,
"Image": {
"Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:0.9.5",
"Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:0.9.6",
"Update": "true"
},
"Ports": [
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME := wormbase/rest
VERSION ?= "0.9.5"
VERSION ?= "0.9.6"
EBX_CONFIG := .ebextensions/.config
WB_DB_URI ?= $(shell sed -rn 's|value:(.*)|\1|p' \
${EBX_CONFIG} | tr -d " " | head -n 1)
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 wormbase/rest-api "0.9.5"
(defproject wormbase/rest-api "0.9.6"
:description
"REST API for retrieving data from datomic on a per widget basis"
:url "https://github.com/WormBase/wormbase-rest"
Expand Down
5 changes: 0 additions & 5 deletions src/rest_api/classes/sequence/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,6 @@
:stop feature-end
:type (:type feature)}))

(defn- my-flatten [x]
(if (sequential? x)
(mapcat my-flatten x)
[x]))

(defn- remove-introns-from-features [positive-features]
(let [last-stop (atom 0)]
(flatten
Expand Down

0 comments on commit dda13d1

Please sign in to comment.