Skip to content

Releases: blumilksoftware/codestyle

v2.5.0

21 Aug 08:33
d69772a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.4.0...v2.5.0

v2.4.0

23 Jun 07:13
0018785
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.3.0...v2.4.0

v2.3.0

30 May 19:30
f858620
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.2.0...v2.3.0

v2.2.0

19 May 05:58
e7d822f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.0...v2.2.0

v2.1.0

04 Apr 08:29
cc9ca1a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

v2.0.0 - PHP 8.2 support

14 Mar 07:45
10c8eba
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.10.0...v2.0.0

v1.10.0 - checked files print

20 Dec 07:39
c66b3f0
Compare
Choose a tag to compare

As described in #73 and implemented in #88.

v1.9.0 - anonymous functions spacing

02 Nov 08:48
82d5bc4
Compare
Choose a tag to compare

v1.8.0 - simple to complex string variables

03 Oct 15:26
7bf9271
Compare
Choose a tag to compare

As described in #80 and implemented in #82, with this release this:

$test = "test";
$concat = "test $test test";
$legacy = "Hello ${test}!";

will be transformed to this:

$test = "test";
$concat = "test $test test";
$legacy = "Hello {$test}!";

v1.7.0 - trailing commas in match expressions

12 Jul 07:12
cdca8c1
Compare
Choose a tag to compare

As described in #39 and implemented in #79, with this release this:

return match ($i) {
    1 => 1,
    2 => 3,
    default => 0
};

will be transformed to this:

return match ($i) {
    1 => 1,
    2 => 3,
    default => 0,
};