From 27ed94842ac59a77c64f10bf8fef98a698bc42ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:35:30 +0000 Subject: [PATCH 1/3] Bump ramsey/composer-install from 2 to 3 Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 2 to 3. - [Release notes](https://github.com/ramsey/composer-install/releases) - [Commits](https://github.com/ramsey/composer-install/compare/v2...v3) --- updated-dependencies: - dependency-name: ramsey/composer-install dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c70e935..04c715b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: coverage: pcov - name: Composer install - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: dependency-versions: ${{ matrix.dependencies }} composer-options: ${{ matrix.composer-options }} From efa3e196fa678897e5f3beb5d4a2b0408dbc50d4 Mon Sep 17 00:00:00 2001 From: MolbioUnige Date: Thu, 29 Aug 2024 11:36:09 +0200 Subject: [PATCH 2/3] Correcting outdated comparaison methods There were examples with eq, ne, gte, from older version --- docs/en/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/index.rst b/docs/en/index.rst index 484800c..c592349 100644 --- a/docs/en/index.rst +++ b/docs/en/index.rst @@ -170,9 +170,9 @@ Once you have 2 instances of Chronos date/time objects you can compare them in a variety of ways:: // Full suite of comparators exist - // ne, gt, lt, lte. - $first->eq($second); - $first->gte($second); + // equals,notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals + $first->equals($second); + $first->greaterThanOrEquals($second); // See if the current object is between two others. $now->between($start, $end); From 75d9dd4960bf8eac93d84c81282b95e2a675aa08 Mon Sep 17 00:00:00 2001 From: Nicolas Roggli Date: Thu, 29 Aug 2024 14:05:14 +0200 Subject: [PATCH 3/3] Correcting missing outdated comparaison methods In fr, ja and pt versions --- docs/en/index.rst | 2 +- docs/fr/index.rst | 8 ++++---- docs/ja/index.rst | 6 +++--- docs/pt/index.rst | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/en/index.rst b/docs/en/index.rst index c592349..76a1e95 100644 --- a/docs/en/index.rst +++ b/docs/en/index.rst @@ -170,7 +170,7 @@ Once you have 2 instances of Chronos date/time objects you can compare them in a variety of ways:: // Full suite of comparators exist - // equals,notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals + // equals, notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals $first->equals($second); $first->greaterThanOrEquals($second); diff --git a/docs/fr/index.rst b/docs/fr/index.rst index 9feae52..2ff0be2 100644 --- a/docs/fr/index.rst +++ b/docs/fr/index.rst @@ -184,10 +184,10 @@ Méthodes de Comparaison Une fois que vous avez 2 instances d'objets date/time de Chronos, vous pouvez les comparer de plusieurs façons:: - // Il exste une suite complète de comparateurs - // ne, gt, lt, lte. - $first->eq($second); - $first->gte($second); + // Il existe une suite complète de comparateurs + // equals, notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals + $first->equals($second); + $first->greaterThanOrEquals($second); // Regarder si l'objet courant est entre deux autres. $now->between($start, $end); diff --git a/docs/ja/index.rst b/docs/ja/index.rst index 186c368..99aafac 100644 --- a/docs/ja/index.rst +++ b/docs/ja/index.rst @@ -165,9 +165,9 @@ Chronos オブジェクトは細やかに値を変更できるメソッドを提 Chronos の日付/時間オブジェクトの2つのインスタンスを様々な方法で比較することができます。 :: // 比較のフルセットが存在します - // ne, gt, lt, lte. - $first->eq($second); - $first->gte($second); + // equals, notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals + $first->equals($second); + $first->greaterThanOrEquals($second); // カレントオブジェクトが2つのオブジェクトの間にあるかどうかを確認します。 $now->between($start, $end); diff --git a/docs/pt/index.rst b/docs/pt/index.rst index 5a06edc..75aaaef 100644 --- a/docs/pt/index.rst +++ b/docs/pt/index.rst @@ -152,9 +152,9 @@ Uma vez que você possui 2 instâncias de objetos data/hora do Chronos, é poss compará-los de várias maneiras:: // Coleção completa de comparadores - // ne, gt, lt, lte. - $first->eq($second); - $first->gte($second); + // equals, notEquals, greaterThan, greaterThanOrEquals, lessThan, lessThanOrEquals + $first->equals($second); + $first->greaterThanOrEquals($second); // Veja se o objeto atual está entre outros $now->between($start, $end);