add AED to default deployment currencies

This commit is contained in:
Pablo Martin 2025-05-27 13:03:05 +02:00
parent 52adcc7538
commit a25f7d267b
3 changed files with 9 additions and 3 deletions

View file

@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.0] - 2025-05-7 ## [1.1.1] - 2025-05-7
### Changed
- The default currencies present in the `run_xexe.sh` deployment script now include `AED`.
## [1.1.0] - 2025-05-07
### Added ### Added

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "xexe" name = "xexe"
version = "1.1.0" version = "1.1.1"
description = "" description = ""
authors = ["Pablo Martin <pablo.martin@superhog.com>"] authors = ["Pablo Martin <pablo.martin@superhog.com>"]
readme = "README.md" readme = "README.md"

View file

@ -50,7 +50,7 @@ if [ $? -ne 0 ]; then
fi fi
# Define some options here. You might want to change this some day. # Define some options here. You might want to change this some day.
currencies="CAD,EUR,NZD,ZAR,AUD,USD,PLN,GBP,CHF" currencies="CAD,EUR,NZD,ZAR,AUD,USD,PLN,GBP,CHF,AED"
start_date=$(date -d "yesterday" +"%Y-%m-%d") start_date=$(date -d "yesterday" +"%Y-%m-%d")
end_date=$(date -d "yesterday" +"%Y-%m-%d") end_date=$(date -d "yesterday" +"%Y-%m-%d")