Skip to content

Commit

Permalink
Release/v0.10.0 (#129)
Browse files Browse the repository at this point in the history
* release: v0.10.0

* updates
  • Loading branch information
priyadi authored Jul 21, 2024
1 parent 0dbcd9a commit b804822
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.9.3
## 0.10.0

* fix(orm): `getQueryBuilder()` now clones the query builder
* feat(orm): add `withQueryBuilder()`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ monorepo-merge:
.PHONY: monorepo-release-%
monorepo-release-%:
git update-index --really-refresh > /dev/null; git diff-index --quiet HEAD || (echo "Working directory is not clean, aborting" && exit 1)
[ $(git branch --show-current) = 'main' ] || (echo "Not on main branch, aborting" && exit 1)
[ `git branch --show-current` == main ] || (echo "Not on main branch, aborting" && exit 1)
$(PHP) vendor/bin/monorepo-builder release $*
git switch -c release/$*
git add .
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
"rector/rector": "^1.2"
},
"replace": {
"rekalogika/collections-common": "0.9.1",
"rekalogika/collections-contracts": "0.9.1",
"rekalogika/collections-domain": "0.9.1",
"rekalogika/collections-orm": "0.9.1"
"rekalogika/collections-common": "0.10.0",
"rekalogika/collections-contracts": "0.10.0",
"rekalogika/collections-domain": "0.10.0",
"rekalogika/collections-orm": "0.10.0"
},
"config": {
"allow-plugins": {
Expand Down
4 changes: 2 additions & 2 deletions packages/collections-domain/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"require": {
"php": "^8.2",
"doctrine/collections": "^2.2.2 || ^2.3",
"rekalogika/collections-common": "^0.9.1",
"rekalogika/collections-contracts": "^0.9.1",
"rekalogika/collections-common": "^0.10",
"rekalogika/collections-contracts": "^0.10",
"rekalogika/rekapager-contracts": "^0.14",
"rekalogika/rekapager-doctrine-collections-adapter": "^0.14",
"rekalogika/rekapager-keyset-pagination": "^0.14"
Expand Down
6 changes: 3 additions & 3 deletions packages/collections-orm/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"php": "^8.2",
"doctrine/collections": "^2.2.2 || ^2.3",
"doctrine/orm": "^2.14 || ^3.0",
"rekalogika/collections-common": "^0.9.1",
"rekalogika/collections-contracts": "^0.9.1",
"rekalogika/collections-domain": "^0.9.1",
"rekalogika/collections-common": "^0.10",
"rekalogika/collections-contracts": "^0.10",
"rekalogika/collections-domain": "^0.10",
"rekalogika/rekapager-contracts": "^0.14",
"rekalogika/rekapager-doctrine-orm-adapter": "^0.14",
"rekalogika/rekapager-keyset-pagination": "^0.14"
Expand Down

0 comments on commit b804822

Please sign in to comment.