Skip to content

Commit

Permalink
Release 1.1.0 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l authored Oct 23, 2020
1 parent ffe5080 commit 07715f5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
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:1.0.0
image: buddy/repman:1.1.0
sysctls:
net.core.somaxconn: 2048
command: >
Expand All @@ -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:
Expand All @@ -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:
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 = '1.0.0';
public const REPMAN_VERSION = '1.1.0';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function getProjectDir(): string
Expand Down

0 comments on commit 07715f5

Please sign in to comment.