Skip to content

Commit 5d5db7c

Browse files
Update documentation
1 parent cb604c6 commit 5d5db7c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66

77

88

9+
## [0.1.2] - 2025-11-24
10+
11+
### Added
12+
- Added support for PHP 8.5
13+
14+
15+
916
## [0.1.1] - 2025-08-03
1017

1118
### Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Backoff
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/code-distortion/backoff.svg?style=flat-square)](https://packagist.org/packages/code-distortion/backoff)
4-
![PHP Version](https://img.shields.io/badge/PHP-8.0%20to%208.4-blue?style=flat-square)
4+
![PHP Version](https://img.shields.io/badge/PHP-8.0%20to%208.5-blue?style=flat-square)
55
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/code-distortion/backoff/run-tests.yml?branch=main&style=flat-square)](https://github.com/code-distortion/backoff/actions)
66
[![Buy The World a Tree](https://img.shields.io/badge/treeware-%F0%9F%8C%B3-lightgreen?style=flat-square)](https://plant.treeware.earth/code-distortion/backoff)
77
[![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-v2.1%20adopted-ff69b4.svg?style=flat-square)](.github/CODE_OF_CONDUCT.md)
@@ -19,7 +19,7 @@ $result = Backoff::exponential(2)->maxAttempts(10)->maxDelay(30)->attempt($actio
1919
```
2020

2121
> See the [cheatsheet](#cheatsheet) for an overview of what's possible.
22-
22+
2323

2424

2525
## Table of Contents
@@ -571,7 +571,7 @@ Backoff::callbackUs($callback)->attempt($action); // in microseconds
571571
572572

573573

574-
### Custom Backoff Algorithm Class
574+
### Custom Backoff Algorithm Class
575575

576576
![Sequence Backoff](docs/algorithms/custom-backoff.png)
577577

@@ -957,7 +957,7 @@ Backoff::exponential(1)
957957

958958
### Retry Until…
959959

960-
Conversely to `->retryWhen()`, you can specify `$match` value/s to wait for. Retries will be made *until*
960+
Conversely to `->retryWhen()`, you can specify `$match` value/s to wait for. Retries will be made *until*
961961
there's a match.
962962

963963
```php

0 commit comments

Comments
 (0)