diff --git a/CHANGES.md b/CHANGES.md index 6b70717a..31027a94 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/). +## [1.3.9] - 2012-06-01 +- Adding VEP results to genetics widget + ## [1.3.8] - 2012-05-30 - Fix moldecular details bug diff --git a/Dockerrun.aws.json b/Dockerrun.aws.json index 370184dd..a768f735 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:1.3.8", + "Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.3.9", "Update": "true" }, "Ports": [ diff --git a/Makefile b/Makefile index cd0561cc..fd0598c4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := wormbase/rest -WORMBASE_REST_VERSION ?= "1.3.8" +WORMBASE_REST_VERSION ?= "1.3.9" 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 1d892d62..0944bee4 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject wormbase/rest-api "1.3.8" +(defproject wormbase/rest-api "1.3.9" :description "REST API for retrieving data from datomic on a per widget basis" :url "https://github.com/WormBase/wormbase-rest"