Skip to content

Commit

Permalink
Bumps to 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Oct 17, 2020
1 parent 6602376 commit 85f06a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= 1.17.1
VERSION ?= 1.18.0
CACHE ?= --no-cache=1
FULLVERSION ?= ${VERSION}
archs ?= amd64 arm32v6 arm64v8 i386
Expand All @@ -13,7 +13,7 @@ build: qemu-aarch64-static qemu-arm-static build/test-image
docker run --rm -v ${PWD}:/app/ yamete:test php composer.phar install --no-dev -o; \
$(foreach arch,$(archs), \
cat docker/Dockerfile | sed "s/FROM php/FROM ${arch}\/php/g" > Dockerfile; \
docker build -t jaymoulin/yamete:${VERSION}-$(arch) --build-arg VERSION=${VERSION} ${CACHE} .;\
docker build -t jaymoulin/yamete-${VERSION}-$(arch) --build-arg VERSION=${VERSION} ${CACHE} .;\
)
publish:
docker push jaymoulin/yamete
Expand Down
2 changes: 1 addition & 1 deletion converter
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
require_once 'vendor/autoload.php';
$sVersion = getenv('VERSION') ?: '1.17.1';
$sVersion = getenv('VERSION') ?: '1.18.0';
define('VERSION', <<<HEREDOC
Yamete $sVersion - Jay MOULIN <https://twitter.com/MoulinJay>
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM php:7.4-alpine
COPY qemu-*-static /usr/bin/
ARG VERSION=1.17.1
ARG VERSION=1.18.0
LABEL maintainer="Jay MOULIN <https://jaymoulin.me/me/yamete> <https://twitter.com/MoulinJay>"
LABEL version=${VERSION}

Expand Down
2 changes: 1 addition & 1 deletion download
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
require_once 'vendor/autoload.php';
$sVersion = getenv('VERSION') ?: '1.17.1';
$sVersion = getenv('VERSION') ?: '1.18.0';
define('VERSION', <<<HEREDOC
Yamete $sVersion - Jay MOULIN <https://twitter.com/MoulinJay>
Expand Down

0 comments on commit 85f06a5

Please sign in to comment.