From 2a14cf95a40ac24d5b40d2e59317f21432c3d94f Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Mon, 8 Mar 2021 21:08:30 +0000 Subject: [PATCH] prep for WS280 release --- CHANGES.md | 4 ++++ Dockerrun.aws.json | 2 +- Makefile | 2 +- project.clj | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c38fa8b8..75c0f935 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.3.5] - 2021-03-08 +- Initial WS280 release +- CORS implemented + ## [1.3.4] - 2020-12-14 - Initial WS279 release - Finished all remaining endpoints diff --git a/Dockerrun.aws.json b/Dockerrun.aws.json index 22deedad..ab95465f 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.4", + "Name": "357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.3.5", "Update": "true" }, "Ports": [ diff --git a/Makefile b/Makefile index 4aee9b70..2eefd214 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := wormbase/rest -WORMBASE_REST_VERSION ?= "1.3.4" +WORMBASE_REST_VERSION ?= "1.3.5" 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 d7da03a4..7a3b6eec 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject wormbase/rest-api "1.3.4" +(defproject wormbase/rest-api "1.3.5" :description "REST API for retrieving data from datomic on a per widget basis" :url "https://github.com/WormBase/wormbase-rest"