From 2140798d0aca85f4fa3e70c77bfef066ce115d1a Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Sat, 23 Feb 2019 20:28:55 +0300 Subject: [PATCH] Update CHANGELOG --- .gitignore | 3 ++- CHANGELOG.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 60 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 998bc74..04b41f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ -/vendor/ +vendor +dist .php_cs .php_cs.cache diff --git a/CHANGELOG.md b/CHANGELOG.md index 049ba4d..be273ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,61 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.3.0] - 2019-02-23 +### Added +- `array_indentation` fixer. +- `combine_consecutive_issets` fixer. +- `combine_nested_dirname` fixer. +- `dir_constant` fixer. +- `ereg_to_preg` fixer. +- `explicit_string_variable` fixer. +- `implode_call` fixer. +- `is_null` fixer. +- `list_syntax` fixer. +- `logical_operators` fixer. +- `lowercase_cast` fixer. +- `lowercase_static_reference` fixer. +- `magic_constant_casing` fixer. +- `magic_method_casing` fixer. +- `multiline_whitespace_before_semicolons` fixer. +- `native_function_casing` fixer. +- `no_alternative_syntax` fixer. +- `no_homoglyph_names` fixer. +- `no_leading_import_slash` fixer. +- `no_leading_namespace_whitespace` fixer. +- `no_mixed_echo_print` fixer. +- `no_multiline_whitespace_around_double_arrow` fixer. +- `no_php4_constructor` fixer. +- `no_spaces_around_offset` fixer. +- `no_superfluous_elseif` fixer. +- `no_unneeded_control_parentheses` fixer. +- `no_useless_return` fixer. +- `php_unit_construct` fixer. +- `php_unit_expectation` fixer. +- `php_unit_method_casing` fixer. +- `php_unit_mock` fixer. +- `php_unit_namespaced` fixer. +- `php_unit_set_up_tear_down_visibility` fixer. +- `php_unit_strict` fixer. +- `pow_to_exponentiation` fixer. +- `psr4` fixer. +- `return_assignment` fixer. +- `random_api_migration` fixer. +- `self_accessor` fixer. +- `set_type_to_cast` fixer. +- `short_scalar_cast` fixer. +- `space_after_semicolon` fixer. +- `standardize_increment` fixer. +- `standardize_not_equals` fixer. +- `trim_array_spaces` fixer. +- `unary_operator_spaces` fixer. + +### Changed +- `friendsofphp/php-cs-fixer` version bumped to `^2.13.0`. + +### Fixed +- `ordered_imports` now has fixed order of import types. + ## [0.2.1] - 2019-02-22 ### Fixed - Compatibility with the `friendsofphp/php-cs-fixer` version 2.13.3 and above. @@ -28,5 +83,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - First release -[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/0.2.0...HEAD +[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/0.3.0...HEAD +[0.3.0]: https://github.com/elyby/php-code-style/compare/0.2.1...0.3.0 +[0.2.1]: https://github.com/elyby/php-code-style/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/elyby/php-code-style/compare/0.1.0...0.2.0