Skip to content

Commit 77134b5

Browse files
authored
Merge pull request #10 from php-enqueue/generate-changelog
Auto generate changelog
2 parents a2ad155 + 1ccb4dc commit 77134b5

File tree

4 files changed

+42
-1
lines changed

4 files changed

+42
-1
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Change Log
2+
3+
## [0.2.3](https://github.com/php-enqueue/enqueue-dev/tree/0.2.3) (2017-01-09)
4+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.2.2...0.2.3)
5+
6+
- \[travis\] Cache docker images on travis. [\#9](https://github.com/php-enqueue/enqueue-dev/pull/9) ([makasim](https://github.com/makasim))
7+
- \[enhancement\]\[amqp-ext\] Add purge queue method to amqp context. [\#8](https://github.com/php-enqueue/enqueue-dev/pull/8) ([makasim](https://github.com/makasim))
8+
- \[bug\]\[amqp-ext\] Receive timeout parameter is miliseconds [\#7](https://github.com/php-enqueue/enqueue-dev/pull/7) ([makasim](https://github.com/makasim))
9+
10+
## [0.2.2](https://github.com/php-enqueue/enqueue-dev/tree/0.2.2) (2017-01-06)
11+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.2.1...0.2.2)
12+
13+
- Amqp lazy connection [\#4](https://github.com/php-enqueue/enqueue-dev/issues/4)
14+
15+
- \[amqp\] introduce lazy context. [\#6](https://github.com/php-enqueue/enqueue-dev/pull/6) ([makasim](https://github.com/makasim))
16+
17+
## [0.2.1](https://github.com/php-enqueue/enqueue-dev/tree/0.2.1) (2017-01-05)
18+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.2.0...0.2.1)
19+
20+
## [0.2.0](https://github.com/php-enqueue/enqueue-dev/tree/0.2.0) (2017-01-05)
21+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.1.0...0.2.0)
22+
23+
- Upd php cs fixer [\#3](https://github.com/php-enqueue/enqueue-dev/pull/3) ([makasim](https://github.com/makasim))
24+
- \[psr\] Introduce MessageProcessor interface \(moved from consumption\). [\#2](https://github.com/php-enqueue/enqueue-dev/pull/2) ([makasim](https://github.com/makasim))
25+
- \[bundle\] Add ability to disable signal extension. [\#1](https://github.com/php-enqueue/enqueue-dev/pull/1) ([makasim](https://github.com/makasim))
26+
27+
## [0.1.0](https://github.com/php-enqueue/enqueue-dev/tree/0.1.0) (2016-12-29)
28+
29+
30+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Dockerfile.generate-changelog

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM ruby:2
2+
3+
RUN gem install github_changelog_generator

bin/dev

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -x
44
set -e
55

6-
while getopts "bustef" OPTION; do
6+
while getopts "bustefc" OPTION; do
77
case $OPTION in
88
b)
99
COMPOSE_PROJECT_NAME=mqdev docker-compose build
@@ -23,6 +23,9 @@ while getopts "bustef" OPTION; do
2323
t)
2424
COMPOSE_PROJECT_NAME=mqdev docker-compose run --workdir="/mqdev" --rm dev ./bin/test
2525
;;
26+
c)
27+
COMPOSE_PROJECT_NAME=mqdev docker-compose run --workdir="/mqdev" --rm generate-changelog github_changelog_generator --future-release "$2" --simple-list
28+
;;
2629

2730
\?)
2831
echo "Invalid option: -$OPTARG" >&2

docker-compose.yml

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ services:
3838
environment:
3939
MYSQL_ROOT_PASSWORD: rootpass
4040

41+
generate-changelog:
42+
build: { context: ., dockerfile: Dockerfile.generate-changelog }
43+
volumes:
44+
- ./:/mqdev
45+
4146
volumes:
4247
mysql-data:
4348
driver: local

0 commit comments

Comments
 (0)