Skip to content

Commit 70d2160

Browse files
[master] contributions.md edited (#8861)
* Contributions.md file edited * Contributions.md edited * [Master] Version 10.x to 11.x
1 parent ea4fb18 commit 70d2160

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

contributions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ Informal discussion regarding bugs, new features, and implementation of existing
7575
<a name="which-branch"></a>
7676
## Which Branch?
7777

78-
**All** bug fixes should be sent to the latest version that supports bug fixes (currently `9.x`). Bug fixes should **never** be sent to the `master` branch unless they fix features that exist only in the upcoming release.
78+
**All** bug fixes should be sent to the latest version that supports bug fixes (currently `11.x`). Bug fixes should **never** be sent to the `master` branch unless they fix features that exist only in the upcoming release.
7979

80-
**Minor** features that are **fully backward compatible** with the current release may be sent to the latest stable branch (currently `9.x`).
80+
**Minor** features that are **fully backward compatible** with the current release may be sent to the latest stable branch (currently `11.x`).
8181

8282
**Major** new features or features with breaking changes should always be sent to the `master` branch, which contains the upcoming release.
8383

helpers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,11 +1840,11 @@ The `Str::replace` method replaces a given string within the string:
18401840

18411841
use Illuminate\Support\Str;
18421842

1843-
$string = 'Laravel 8.x';
1843+
$string = 'Laravel 10.x';
18441844

1845-
$replaced = Str::replace('8.x', '9.x', $string);
1845+
$replaced = Str::replace('10.x', '11.x', $string);
18461846

1847-
// Laravel 9.x
1847+
// Laravel 11.x
18481848

18491849
<a name="method-str-replace-array"></a>
18501850
#### `Str::replaceArray()` {.collection-method}

http-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The HTTP client also allows you to construct request URLs using the [URI templat
8484
Http::withUrlParameters([
8585
'endpoint' => 'https://laravel.com',
8686
'page' => 'docs',
87-
'version' => '9.x',
87+
'version' => '11.x',
8888
'topic' => 'validation',
8989
])->get('{+endpoint}/{page}/{version}/{topic}');
9090
```

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ You can find the online version of the Laravel documentation at [https://laravel
44

55
## Contribution Guidelines
66

7-
If you are submitting documentation for the **current stable release**, submit it to the corresponding branch. For example, documentation for Laravel 9 would be submitted to the `9.x` branch. Documentation intended for the next release of Laravel should be submitted to the `master` branch.
7+
If you are submitting documentation for the **current stable release**, submit it to the corresponding branch. For example, documentation for Laravel 11 would be submitted to the `11.x` branch. Documentation intended for the next release of Laravel should be submitted to the `master` branch.

0 commit comments

Comments
 (0)