diff --git a/CHANGES.md b/CHANGES.md index 0d5f3ec3..79e71535 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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.2] - 2019-05-13 +- Fix missing 5 prime UTR in spliced transcript sequence caused by typo + ## [0.9.1] - 2019-05-10 - Adding in pseudogene, transcript and CSD widgets diff --git a/Dockerrun.aws.json b/Dockerrun.aws.json index df41604b..dab7a1af 100644 --- a/Dockerrun.aws.json +++ b/Dockerrun.aws.json @@ -1,7 +1,7 @@ { "AWSEBDockerrunVersion": 1, "Image": { - "Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:0.9.1", + "Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:0.9.2", "Update": "true" }, "Ports": [ diff --git a/Makefile b/Makefile index 0f2b4939..669b5ab4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := wormbase/rest -VERSION ?= "0.9.1" +VERSION ?= "0.9.2" EBX_CONFIG := .ebextensions/.config WB_DB_URI ?= $(shell sed -rn 's|value:(.*)|\1|p' \ ${EBX_CONFIG} | tr -d " " | head -n 1) diff --git a/project.clj b/project.clj index 9934d596..ba4163e3 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject wormbase/rest-api "0.9.1" +(defproject wormbase/rest-api "0.9.2" :description "REST API for retrieving data from datomic on a per widget basis" :url "https://github.com/WormBase/wormbase-rest"