Skip to content

Commit

Permalink
Release 0.4.1 (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored Jul 15, 2020
1 parent cca20bf commit 61e39aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ On next release:

## [Unreleased]

## [0.4.1] - 2020-07-15
### Fixed
- Add support for IPv6 addresses ([#216](https://github.com/repman-io/repman/pull/216), thanks @nickygerritsen)
- Fix user voters with anonymous access ([#215](https://github.com/repman-io/repman/pull/215))

## [0.4.0] - 2020-07-13
### Added
- Registration config options ([#200](https://github.com/repman-io/repman/pull/200), thanks @nickygerritsen)
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:

app:
<< : *restart_policy
image: buddy/repman:0.4.0
image: buddy/repman:0.4.1
command: >
bash -c 'bin/console cache:clear &&
bin/console cache:warmup &&
Expand All @@ -35,7 +35,7 @@ services:

consumer:
<< : *restart_policy
image: buddy/repman:0.4.0
image: buddy/repman:0.4.1
command: ['bin/console', 'messenger:consume', 'async', '--limit=500']
env_file: .env.docker
volumes:
Expand All @@ -45,7 +45,7 @@ services:

cron:
<< : *restart_policy
image: buddy/repman:0.4.0
image: buddy/repman:0.4.1
command: ['crond', '-f', '-L', '/dev/stdout']
env_file: .env.docker
volumes:
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Kernel extends BaseKernel
{
use MicroKernelTrait;

public const REPMAN_VERSION = '0.4.0';
public const REPMAN_VERSION = '0.4.1';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function registerBundles(): iterable
Expand Down

0 comments on commit 61e39aa

Please sign in to comment.