Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasss93 committed Nov 30, 2022
1 parent 9bbd797 commit 378d890
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [v4.3.0](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.3.0) - 2022-11-30

### Added

- Added `larex:lang:order` command
- Added ability to set source language for "larex:import" command

### Fixed

- Fixed: wrong export message (#26)
- Fixed: duplicate lint message (#27) in "SameParametersLinter" file

## [v4.2](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.2) - 2022-07-12

### Added

- Added new linter: SameParametersLinter

## [v4.1](https://github.com/Lukasss93/laravel-larex/releases/tag/v4.1) - 2022-06-28

### Added
Expand Down
31 changes: 18 additions & 13 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,28 @@
Because there are many breaking changes an upgrade is not that easy. There are many edge cases this guide does not
cover. We accept PRs to improve this guide.

## From v4.2 to v4.3.0

- The `larex.php` config was changed:
- **Optional**. Please append new `source_language` key in this way:
```php
'source_language' => 'en',
```

_Or you can delete your current config and publish it again (copy your changes before)._

## From v4.0 to v4.2

- The `larex.php` config was changed:
- **Optional**. Please append new `SameParametersLinter` linter in this way:
```php
/**
* Linters to run with larex:lint command.
*/
'linters' => [
// other linters here
// Lukasss93\Larex\Linters\SameParametersLinter::class,
],
```
- **Optional**. Please append new `SameParametersLinter` linter in this way:
```php
'linters' => [
// other linters here
// Lukasss93\Larex\Linters\SameParametersLinter::class,
],
```
- **Optional**. Please append `ignore_empty_values` key in this way:
```php
/**
* Used by SameParametersLinter
*/
'ignore_empty_values' => false,
```
_Or you can delete your current config and publish it again (copy your changes before)._
Expand Down

0 comments on commit 378d890

Please sign in to comment.