Skip to content

Commit 5d35bc1

Browse files
authored
correct version 11.x to 12.x (#10206)
1 parent 97e713d commit 5d35bc1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

contributions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ Informal discussion regarding bugs, new features, and implementation of existing
8282
<a name="which-branch"></a>
8383
## Which Branch?
8484

85-
**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.
85+
**All** bug fixes should be sent to the latest version that supports bug fixes (currently `12.x`). Bug fixes should **never** be sent to the `master` branch unless they fix features that exist only in the upcoming release.
8686

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

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

passport.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public function register(): void
241241
}
242242
```
243243

244-
Then, you may copy the routes defined by Passport in [its routes file](https://github.com/laravel/passport/blob/11.x/routes/web.php) to your application's `routes/web.php` file and modify them to your liking:
244+
Then, you may copy the routes defined by Passport in [its routes file](https://github.com/laravel/passport/blob/12.x/routes/web.php) to your application's `routes/web.php` file and modify them to your liking:
245245

246246
```php
247247
Route::group([

readme.md

+1-1
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 11 would be submitted to the `11.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 12 would be submitted to the `12.x` branch. Documentation intended for the next release of Laravel should be submitted to the `master` branch.

strings.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1172,11 +1172,11 @@ The `Str::replace` method replaces a given string within the string:
11721172
```php
11731173
use Illuminate\Support\Str;
11741174

1175-
$string = 'Laravel 10.x';
1175+
$string = 'Laravel 11.x';
11761176

1177-
$replaced = Str::replace('10.x', '11.x', $string);
1177+
$replaced = Str::replace('11.x', '12.x', $string);
11781178

1179-
// Laravel 11.x
1179+
// Laravel 12.x
11801180
```
11811181

11821182
The `replace` method also accepts a `caseSensitive` argument. By default, the `replace` method is case sensitive:

0 commit comments

Comments
 (0)