From ae8954204d87308853b4b88c012e405206971443 Mon Sep 17 00:00:00 2001 From: "release-automaton[bot]" <135179185+release-automaton[bot]@users.noreply.github.com> Date: Sat, 24 Jun 2023 18:24:01 +0100 Subject: [PATCH] chore: release 1.0.0 (#3) --- CHANGELOG.md | 22 ++++++++++++++++++++++ composer.json | 9 +++++++-- 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7c90acb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +## [1.0.0](https://www.github.com/ksaveras/circuit-breaker-bundle/compare/v0.2.0...v1.0.0) (2023-06-24) + + +### ⚠ BREAKING CHANGES + +* Bump circuit breaker (#10) +* Bump minimum PHP version to 8.1 (#2) + +### Features + +* Bump circuit breaker ([#10](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/10)) ([5560f59](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/5560f5965bfdfd9d337e7db817c242fe2fd41bdc)) +* Bump minimum PHP version to 8.1 ([#2](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/2)) ([df9c5f8](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/df9c5f8482e0bb8e61d989733035c2209fb80349)) + + +### Miscellaneous Chores + +* Bump PHPUnit version to 10.2 ([#7](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/7)) ([70da969](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/70da969f0998d14f7a095037134e21249c990f9c)) +* Remove Travis config ([#6](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/6)) ([8d69cd7](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/8d69cd79a18a26b0ec0dff6d0bcdd75468132ed1)) +* Update list of keywords ([#11](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/11)) ([c299efe](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/c299efe25eb226ddd3dd47e51b3a34ff3f9a1ca6)) +* Use stable version ([#12](https://www.github.com/ksaveras/circuit-breaker-bundle/issues/12)) ([51ec2f3](https://www.github.com/ksaveras/circuit-breaker-bundle/commit/51ec2f3cf30426938c3b3eebbc514caed4b38237)) diff --git a/composer.json b/composer.json index a037182..5435b7f 100644 --- a/composer.json +++ b/composer.json @@ -49,9 +49,14 @@ "rector:fix": "./vendor/bin/rector process", "test": "./vendor/bin/phpunit", "test:coverage": "./vendor/bin/phpunit --coverage-clover=coverage/clover.xml", - "static-analysis": ["@phpcs", "@phpstan", "@rector"] + "static-analysis": [ + "@phpcs", + "@phpstan", + "@rector" + ] }, "config": { "sort-packages": true - } + }, + "version": "1.0.0" }