diff --git a/.ebextensions/.config b/.ebextensions/.config index 32253fba..00d86a01 100644 --- a/.ebextensions/.config +++ b/.ebextensions/.config @@ -1,5 +1,5 @@ option_settings: - option_name: WB_DB_URI - value: datomic:ddb://us-east-1/WS271/wormbase + value: datomic:ddb://us-east-1/WS270/wormbase - option_name: _JAVA_OPTIONS value: "-Xmx14g" diff --git a/CHANGES.md b/CHANGES.md index cd8569d3..c5eef273 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.9] - 2019-06-19 +- Fix MTGE transcript bug found by user + ## [0.9.8] - 2019-06-13 - releasing PCR-oligo sequences widget - fixing a couple bugs with variation molecular details widget diff --git a/Dockerrun.aws.json b/Dockerrun.aws.json index 9f63a3ef..610c0247 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.8", + "Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:0.9.9", "Update": "true" }, "Ports": [ diff --git a/Makefile b/Makefile index 93377334..7788549d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := wormbase/rest -WORMBASE_REST_VERSION ?= "0.9.8" +WORMBASE_REST_VERSION ?= "0.9.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 2473eab7..6a7f218c 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject wormbase/rest-api "0.9.8" +(defproject wormbase/rest-api "0.9.9" :description "REST API for retrieving data from datomic on a per widget basis" :url "https://github.com/WormBase/wormbase-rest" @@ -62,7 +62,7 @@ :source-paths ["dev"] :jvm-opts ["-Xmx1G"] :env - {:wb-db-uri "datomic:ddb://us-east-1/WS271/wormbase" + {:wb-db-uri "datomic:ddb://us-east-1/WS270/wormbase" :swagger-validator-url "http://localhost:8002"} :plugins [[jonase/eastwood "0.2.3"