Skip to content

Commit 2d41b6e

Browse files
committed
release 0.10.21
1 parent 6b48a41 commit 2d41b6e

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change Log
22

3+
## [0.10.21](https://github.com/php-enqueue/enqueue-dev/tree/0.10.21) (2024-08-12)
4+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.10.20...0.10.21)
5+
6+
**Merged pull requests:**
7+
8+
- feat\(GPS\): allow send attributes in Google PubSub message. [\#1349](https://github.com/php-enqueue/enqueue-dev/pull/1349) ([p-pichet](https://github.com/p-pichet))
9+
10+
## [0.10.19](https://github.com/php-enqueue/enqueue-dev/tree/0.10.19) (2023-07-15)
11+
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.10.18...0.10.19)
12+
13+
**Merged pull requests:**
14+
15+
- fix: do not reset attemps header when message is requeue [\#1301](https://github.com/php-enqueue/enqueue-dev/pull/1301) ([eortiz-tracktik](https://github.com/eortiz-tracktik))
16+
- Allow doctrine/persistence 3.1 version [\#1300](https://github.com/php-enqueue/enqueue-dev/pull/1300) ([xNarkon](https://github.com/xNarkon))
17+
- Add support for rediss and phpredis [\#1297](https://github.com/php-enqueue/enqueue-dev/pull/1297) ([splagemann](https://github.com/splagemann))
18+
- Replaced `json\_array` with `json` due to Doctrine Dbal 3.0 [\#1294](https://github.com/php-enqueue/enqueue-dev/pull/1294) ([NovakHonza](https://github.com/NovakHonza))
19+
- pkg PHP 8.1 and 8.2 support [\#1292](https://github.com/php-enqueue/enqueue-dev/pull/1292) ([snapshotpl](https://github.com/snapshotpl))
20+
- Update doctrine/persistence [\#1290](https://github.com/php-enqueue/enqueue-dev/pull/1290) ([jlabedo](https://github.com/jlabedo))
21+
- Add PHP 8.1 and 8.2, Symfony 6.2 to CI [\#1285](https://github.com/php-enqueue/enqueue-dev/pull/1285) ([andrewmy](https://github.com/andrewmy))
22+
- \[SNSQS\] added possibility to send FIFO-related parameters using snsqs transport [\#1278](https://github.com/php-enqueue/enqueue-dev/pull/1278) ([onatskyy](https://github.com/onatskyy))
23+
324
## [0.10.18](https://github.com/php-enqueue/enqueue-dev/tree/0.10.18) (2023-03-18)
425
[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.10.17...0.10.18)
526

bin/release

+4-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ do
4343
if [[ -z "$LAST_RELEASE" ]]; then
4444
echo "There has not been any releases. Releasing $1";
4545

46-
git tag $1 -a -s -m "Release $1"
46+
#git tag $1 -a -s -m "Release $1"
47+
git tag $1 -a -m "Release $1"
4748
git push origin --tags
4849
else
4950
echo "Last release $LAST_RELEASE";
@@ -53,7 +54,8 @@ do
5354
if [[ ! -z "$CHANGES_SINCE_LAST_RELEASE" ]]; then
5455
echo "There are changes since last release. Releasing $1";
5556

56-
git tag $1 -s -m "Release $1"
57+
#git tag $1 -s -m "Release $1"
58+
git tag $1 -m "Release $1"
5759
git push origin --tags
5860
else
5961
echo "No change since last release.";

0 commit comments

Comments
 (0)