Skip to content

Commit 378d890

Browse files
committed
Update changelog
1 parent 9bbd797 commit 378d890

File tree

2 files changed

+36
-13
lines changed

2 files changed

+36
-13
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
Please check the [UPGRADING.md](UPGRADING.md) file before upgrading to a major version!
99

10+
## [v4.3.0](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.3.0) - 2022-11-30
11+
12+
### Added
13+
14+
- Added `larex:lang:order` command
15+
- Added ability to set source language for "larex:import" command
16+
17+
### Fixed
18+
19+
- Fixed: wrong export message (#26)
20+
- Fixed: duplicate lint message (#27) in "SameParametersLinter" file
21+
22+
## [v4.2](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.2) - 2022-07-12
23+
24+
### Added
25+
26+
- Added new linter: SameParametersLinter
27+
1028
## [v4.1](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.1) - 2022-06-28
1129

1230
### Added

UPGRADING.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,28 @@
33
Because there are many breaking changes an upgrade is not that easy. There are many edge cases this guide does not
44
cover. We accept PRs to improve this guide.
55

6+
## From v4.2 to v4.3.0
7+
8+
- The `larex.php` config was changed:
9+
- **Optional**. Please append new `source_language` key in this way:
10+
```php
11+
'source_language' => 'en',
12+
```
13+
14+
_Or you can delete your current config and publish it again (copy your changes before)._
15+
616
## From v4.0 to v4.2
17+
718
- The `larex.php` config was changed:
8-
- **Optional**. Please append new `SameParametersLinter` linter in this way:
9-
```php
10-
/**
11-
* Linters to run with larex:lint command.
12-
*/
13-
'linters' => [
14-
// other linters here
15-
// Lukasss93\Larex\Linters\SameParametersLinter::class,
16-
],
17-
```
19+
- **Optional**. Please append new `SameParametersLinter` linter in this way:
20+
```php
21+
'linters' => [
22+
// other linters here
23+
// Lukasss93\Larex\Linters\SameParametersLinter::class,
24+
],
25+
```
1826
- **Optional**. Please append `ignore_empty_values` key in this way:
1927
```php
20-
/**
21-
* Used by SameParametersLinter
22-
*/
2328
'ignore_empty_values' => false,
2429
```
2530
_Or you can delete your current config and publish it again (copy your changes before)._

0 commit comments

Comments
 (0)