Skip to content

Commit

Permalink
Prepare release 0.1.2 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
akondas authored Apr 27, 2020
1 parent 3e12f9f commit 16d84eb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- WIP: organization members (#56)

## [0.1.2] - 2020-04-27
### Added
- Add ability to unlink OAuth integration from user profile page (#106)
- Uptime Robot monitor (#102 & #103)

### Changes
- GitLab API: Show all user's packages and order by last activity (#104)

### Fixed
- Handle oauth errors during registration (#92)
- Handle errors when fetching repos from provider (#94)
- Fix last package version detection mechanism (#99)
- Fix support for packages with slash in version name (#101)
- Fix number of days for /admin/stats (#108)
- Fix recent webhook requests view model (#110)
- Allow *.php named packages to be found (#111)

## [0.1.1] - 2020-04-22
### BC break
- user email is now change to lowercase with migration
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:

app:
restart: always
image: buddy/repman:0.1.1
image: buddy/repman:0.1.2
command: >
bash -c 'bin/console cache:clear &&
bin/console cache:warmup &&
Expand All @@ -31,7 +31,7 @@ services:

consumer:
restart: always
image: buddy/repman:0.1.1
image: buddy/repman:0.1.2
command: ['bin/console', 'messenger:consume', 'async', '--limit=500']
env_file: .env.docker
volumes:
Expand All @@ -41,7 +41,7 @@ services:

cron:
restart: always
image: buddy/repman:0.1.1
image: buddy/repman:0.1.2
command: >
bash -c 'echo "*/5 * * * * /app/bin/console repman:proxy:sync-releases" | crontab - && crond -f -L /dev/stdout'
env_file: .env.docker
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.1.1';
public const REPMAN_VERSION = '0.1.2';
private const CONFIG_EXTS = '.{php,xml,yaml,yml}';

public function registerBundles(): iterable
Expand Down

0 comments on commit 16d84eb

Please sign in to comment.