Skip to content

Commit

Permalink
Merge branch 'release/1.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed May 3, 2022
2 parents 65aed61 + 27be66c commit 53faa14
Show file tree
Hide file tree
Showing 3 changed files with 147 additions and 207 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# nystudio107/matrixfacades Change Log

## 1.0.11 - 2022.05.03
### Changed
* Use `docker-compose` to test the version, rather than the newer `docker compose`, to be backwards compatible

## 1.0.10 - 2022.05.03
### Changed
* Determine the separator character by checking the Docker Compose API version at runtime
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Determine the docker compose API version to determine the separator character
VERSION?=$(shell docker compose version)
# Determine the docker compose API version to get the separator character
VERSION?=$(shell docker-compose -v)
ifneq (,$(findstring v2.,$(VERSION)))
SEPARATOR:=-
else
Expand Down
Loading

0 comments on commit 53faa14

Please sign in to comment.