Skip to content

Commit

Permalink
Release 1.0.0 (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
karniv00l authored Sep 29, 2020
1 parent d2756af commit 2f83204
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,22 @@ On next release:

## [Unreleased]

## [1.0.0] - 2020-10-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))
- add `reCaptcha` and better email validation ([#276](https://github.com/repman-io/repman/pull/276), [#277](https://github.com/repman-io/repman/pull/277))
- REST API implementation ([#269](https://github.com/repman-io/repman/pull/269), [#275](https://github.com/repman-io/repman/pull/275))
- add ability to search packages ([#259](https://github.com/repman-io/repman/pull/259), [#263](https://github.com/repman-io/repman/pull/263), thanks @giggsey)
- add `CODE_OF_CONDUCT.md` ([#258](https://github.com/repman-io/repman/pull/258))

### Changed
- remove `mailhog` from `docker-compose.yml` ([#293](https://github.com/repman-io/repman/pull/293))
- Tweak sysctl for better performance ([#265](https://github.com/repman-io/repman/pull/265), [#271](https://github.com/repman-io/repman/pull/271))

### Fixed
- Fix nginx and php-fpm to correct handle symlinks ([#262](https://github.com/repman-io/repman/pull/262))

## [0.6.0] - 2020-09-03
### Added
- implement command for clearing old private distributions files ([#244](https://github.com/repman-io/repman/pull/244))
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.6.0
image: buddy/repman:1.0.0
sysctls:
net.core.somaxconn: 2048
command: >
Expand All @@ -39,7 +39,7 @@ services:

consumer:
<< : *restart_policy
image: buddy/repman:0.6.0
image: buddy/repman:1.0.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:0.6.0
image: buddy/repman:1.0.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 = '0.6.0';
public const REPMAN_VERSION = '1.0.0';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function getProjectDir(): string
Expand Down

0 comments on commit 2f83204

Please sign in to comment.