diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c688adf..81b50455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ On next release: - [ ] update src/Kernel.php (REPMAN_VERSION) - [ ] update docker-compose.yml (image tags) +## [1.2.1] - 2021-02-03 + +### Fixed +- Remove webhook when package removed (API) and organization removed (UI) ([#404](https://github.com/repman-io/repman/pull/404)) + ## [1.2.0] - 2021-02-01 ### Added diff --git a/docker-compose.yml b/docker-compose.yml index f9133ada..fde76058 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,7 +19,7 @@ services: app: << : *restart_policy - image: buddy/repman:1.2.0 + image: buddy/repman:1.2.1 sysctls: net.core.somaxconn: 2048 command: > @@ -39,7 +39,7 @@ services: consumer: << : *restart_policy - image: buddy/repman:1.2.0 + image: buddy/repman:1.2.1 command: ['bin/console', 'messenger:consume', 'async', '--limit=500'] env_file: .env.docker volumes: @@ -49,7 +49,7 @@ services: cron: << : *restart_policy - image: buddy/repman:1.2.0 + image: buddy/repman:1.2.1 command: ['crond', '-f', '-L', '/app/var/log/cron.log'] env_file: .env.docker volumes: diff --git a/src/Kernel.php b/src/Kernel.php index 7aed1e74..25ffdedf 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends BaseKernel { use MicroKernelTrait; - public const REPMAN_VERSION = '1.2.0'; + public const REPMAN_VERSION = '1.2.1'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function getProjectDir(): string