diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d1df95..221b6f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,26 @@ On next release: ## [Unreleased] -## [1.0.0] - 2020-10-29 +## [1.1.0] - 2020-10-23 + +### Added +- Display README.md for packages ([#303](https://github.com/repman-io/repman/pull/303) thanks @giggsey) +- Allow package list to be sortable ([#300](https://github.com/repman-io/repman/pull/300) thanks @giggsey) +- Allow user to edit packages ([#299](https://github.com/repman-io/repman/pull/299)) +- Improve Package Details UX ([#298](https://github.com/repman-io/repman/pull/298) thanks @giggsey) +- Implement user timezone ([#297](https://github.com/repman-io/repman/pull/297)) +- Add option to limit number of package versions being imported ([#294](https://github.com/repman-io/repman/pull/294)) + +### Changed +- Repo JSON Performance Improvements ([#310](https://github.com/repman-io/repman/pull/310) thanks @giggsey) +- Update doctrine-bundle and symfony to remove deprecation notice ([#305](https://github.com/repman-io/repman/pull/305)) + +### Fixed +- Fix artifact repo security scan ([#315](https://github.com/repman-io/repman/pull/315) thanks @giggsey) +- Ensure that latest version is not removed when limit is applied ([#312](https://github.com/repman-io/repman/pull/312)) +- Do not allow null values for number of last releases when updating ([#302](https://github.com/repman-io/repman/pull/302)) + +## [1.0.0] - 2020-09-29 ### Added - implement `provider-includes` for better proxy performance ([#281](https://github.com/repman-io/repman/pull/281), [#283](https://github.com/repman-io/repman/pull/283), [#290](https://github.com/repman-io/repman/pull/290)) - add version for assets ([#278](https://github.com/repman-io/repman/pull/278)) diff --git a/docker-compose.yml b/docker-compose.yml index b72fdc14..f7ced1f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,7 +19,7 @@ services: app: << : *restart_policy - image: buddy/repman:1.0.0 + image: buddy/repman:1.1.0 sysctls: net.core.somaxconn: 2048 command: > @@ -39,7 +39,7 @@ services: consumer: << : *restart_policy - image: buddy/repman:1.0.0 + image: buddy/repman:1.1.0 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.0.0 + image: buddy/repman:1.1.0 command: ['crond', '-f', '-L', '/dev/stdout'] env_file: .env.docker volumes: diff --git a/src/Kernel.php b/src/Kernel.php index 83284e48..c068bbc6 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends BaseKernel { use MicroKernelTrait; - public const REPMAN_VERSION = '1.0.0'; + public const REPMAN_VERSION = '1.1.0'; private const CONFIG_EXTS = '.{php,xml,yaml,yml}'; public function getProjectDir(): string