Skip to content

Commit

Permalink
Release v3.2.0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Feb 11, 2022
1 parent 05a3142 commit ae354d6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
platforms: linux/amd64, linux/arm64/v8
containerfiles: Dockerfile-grocy-backend
build-args: |
GROCY_VERSION=v3.1.3
GROCY_VERSION=v3.2.0
COMPOSER_VERSION=2.1.5
COMPOSER_CHECKSUM=be95557cc36eeb82da0f4340a469bad56b57f742d2891892dcb2f8b0179790ec
- id: build-grocy-frontend
Expand All @@ -36,7 +36,7 @@ jobs:
platforms: linux/amd64, linux/arm64/v8
containerfiles: Dockerfile-grocy-frontend
build-args: |
GROCY_VERSION=v3.1.3
GROCY_VERSION=v3.2.0
# Publish the container manifests
- uses: redhat-actions/[email protected]
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [v3.2.0-0] - 2022-02-11

- Upgrade to grocy v3.2.0

## [v3.1.3-1] - 2021-12-15

- Add continuous integration support for multi-architecture container builds
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build run pod manifest manifest-create %-backend %-frontend

GROCY_VERSION = v3.1.3
GROCY_VERSION = v3.2.0
COMPOSER_VERSION = 2.1.5
COMPOSER_CHECKSUM = be95557cc36eeb82da0f4340a469bad56b57f742d2891892dcb2f8b0179790ec
IMAGE_TAG ?= $(shell git describe --tags --match 'v*' --dirty)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Follow [these instructions](https://docs.docker.com/install/) to get Docker runn
To get started using pre-built [Docker Hub grocy images](https://hub.docker.com/u/grocy), run the following commands:

```sh
export GROCY_IMAGE_TAG=v3.1.3-1
export GROCY_IMAGE_TAG=v3.2.0-0
docker-compose pull
docker-compose up
```
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
image: "grocy/frontend:${GROCY_IMAGE_TAG}"
build:
args:
GROCY_VERSION: v3.1.3
GROCY_VERSION: v3.2.0
PLATFORM: linux/amd64
context: .
dockerfile: Dockerfile-grocy-frontend
Expand All @@ -25,7 +25,7 @@ services:
image: "grocy/backend:${GROCY_IMAGE_TAG}"
build:
args:
GROCY_VERSION: v3.1.3
GROCY_VERSION: v3.2.0
PLATFORM: linux/amd64
COMPOSER_VERSION: "2.1.5"
COMPOSER_CHECKSUM: "be95557cc36eeb82da0f4340a469bad56b57f742d2891892dcb2f8b0179790ec"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "grocy-docker",
"version": "3.1.3-1",
"version": "3.2.0-0",
"description": "ERP beyond your fridge - now containerized",
"main": ".",
"scripts": {
"build": "docker-compose build",
"test": "npm run build && npm run test:backend && npm run test:frontend",
"test:backend": "npx snyk test --docker grocy/backend:v3.1.3-1 --file=Dockerfile-grocy-backend",
"test:frontend": "npx snyk test --docker grocy/frontend:v3.1.3-1 --file=Dockerfile-grocy-frontend"
"test:backend": "npx snyk test --docker grocy/backend:v3.2.0-0 --file=Dockerfile-grocy-backend",
"test:frontend": "npx snyk test --docker grocy/frontend:v3.2.0-0 --file=Dockerfile-grocy-frontend"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit ae354d6

Please sign in to comment.