From 2598506a63606357b6e202156794f56efd9e7933 Mon Sep 17 00:00:00 2001 From: Paulo Nuin Date: Fri, 22 Mar 2024 14:24:04 +0000 Subject: [PATCH] initial release for WS292, REST 1.5.6 --- .ebextensions/.config | 2 +- CHANGES.md | 8 +++++++- Makefile | 2 +- README.md | 4 ++-- docker-compose.yml | 2 +- project.clj | 2 +- 6 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.ebextensions/.config b/.ebextensions/.config index b4775ed3..712fdb7d 100644 --- a/.ebextensions/.config +++ b/.ebextensions/.config @@ -1,5 +1,5 @@ option_settings: - option_name: WB_DB_URI - value: datomic:ddb://us-east-1/WS291/wormbase + value: datomic:ddb://us-east-1/WS292/wormbase - option_name: _JAVA_OPTIONS value: "-Xmx13g" diff --git a/CHANGES.md b/CHANGES.md index f265aa0a..fc2e6cbd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,9 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [1.5.5] - 2023-10-15 +## [1.5.6] - 2024-03-22 +- initial release for WS292 + +## [1.5.5] - 2024-01-09 - initial release for WS291 +## [1.5.4b] - 2023-10-15 +- hotfix release for WS290 + ## [1.5.4] - 2023-10-15 - initial release for WS290 diff --git a/Makefile b/Makefile index bc42c22f..39591165 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := wormbase/rest -WORMBASE_REST_VERSION ?= "1.5.5" +WORMBASE_REST_VERSION ?= "1.5.6" EBX_CONFIG := .ebextensions/.config WB_DB_URI ?= $(shell sed -rn 's|value:(.*)|\1|p' \ ${EBX_CONFIG} | tr -d " " | head -n 1) diff --git a/README.md b/README.md index 61202fab..bbd5be78 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Run following commands and test each step happens correctly. ```bash -export WB_DB_URI="datomic:ddb://us-east-1/WS291/wormbase" +export WB_DB_URI="datomic:ddb://us-east-1/WS292/wormbase" lein ring server-headless 8130 lein do eastwood, test make docker-build @@ -37,7 +37,7 @@ eb deploy ## Setting environment variables ```bash -export WB_DB_URI="datomic:ddb://us-east-1/WS291/wormbase" +export WB_DB_URI="datomic:ddb://us-east-1/WS292/wormbase" ``` ## Starting server in development diff --git a/docker-compose.yml b/docker-compose.yml index de4c8f64..0cfd742b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.7" services: wormbase_api: - image: 357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.5.5 + image: 357210185381.dkr.ecr.us-east-1.amazonaws.com/wormbase/rest:1.5.6 ports: - "80:3000" environment: diff --git a/project.clj b/project.clj index d4ab577d..75d1e090 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject wormbase/rest-api "1.5.5" +(defproject wormbase/rest-api "1.5.6" :description "REST API for retrieving data from datomic on a per widget basis" :url "https://github.com/WormBase/wormbase-rest"