Skip to content

Commit

Permalink
v2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Feb 23, 2023
1 parent 16f500c commit bf28275
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 23 deletions.
8 changes: 8 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ found at:

=== Changes made since last versioned release ===

(none)

=== Version/Release 2.9.5 ===
PATCH RELEASE.

- [2023.01.28; Bug-fix; Maikuolan]: Cache handler potentially generating
unexpected exceptions in some situations; Fixed.

Expand All @@ -24,6 +29,9 @@ found at:
- [2023.02.23; Maikuolan]: Optionally, the L10N handler can now automatically
determine text directionality for use by the implementation.

Caleb M (Maikuolan),
February 23, 2023.

=== Version/Release 2.9.4 ===
PATCH RELEASE.

Expand Down
4 changes: 2 additions & 2 deletions src/Cache.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* A simple, unified cache handler (last modified: 2023.02.21).
* A simple, unified cache handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -180,7 +180,7 @@ class Cache
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Construct object and set working data if needed.
Expand Down
4 changes: 2 additions & 2 deletions src/ComplexStringHandler.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Complex string handler (last modified: 2023.01.22).
* Complex string handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -37,7 +37,7 @@ class ComplexStringHandler
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Constructor.
Expand Down
4 changes: 2 additions & 2 deletions src/DelayedIO.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Delayed file IO class (last modified: 2023.01.22).
* Delayed file IO class (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -47,7 +47,7 @@ class DelayedIO
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* All pending modified files are written at object destruction.
Expand Down
4 changes: 2 additions & 2 deletions src/Demojibakefier.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Demojibakefier (last modified: 2023.01.22).
* Demojibakefier (last modified: 2023.02.23).
*
* Intended to normalise the character encoding of a given string to a
* preferred character encoding when the given string's byte sequences don't
Expand Down Expand Up @@ -57,7 +57,7 @@ class Demojibakefier
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Constructor.
Expand Down
4 changes: 2 additions & 2 deletions src/Events.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Events orchestrator (last modified: 2023.01.22).
* Events orchestrator (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -32,7 +32,7 @@ class Events
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Adds a new event handler.
Expand Down
4 changes: 2 additions & 2 deletions src/IPHeader.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* IP header class (last modified: 2023.01.22).
* IP header class (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -37,7 +37,7 @@ class IPHeader
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Constructor.
Expand Down
2 changes: 1 addition & 1 deletion src/L10N.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class L10N
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Constructor.
Expand Down
4 changes: 2 additions & 2 deletions src/Matrix.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Matrix handler (last modified: 2023.01.22).
* Matrix handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -42,7 +42,7 @@ class Matrix
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Create the matrix.
Expand Down
4 changes: 2 additions & 2 deletions src/NumberFormatter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Number formatter (last modified: 2023.01.22).
* Number formatter (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -1068,7 +1068,7 @@ class NumberFormatter
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Constructor.
Expand Down
4 changes: 2 additions & 2 deletions src/Operation.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Operation handler (last modified: 2023.01.22).
* Operation handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand All @@ -27,7 +27,7 @@ class Operation
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Operators for version numbers.
Expand Down
4 changes: 2 additions & 2 deletions src/Request.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Request handler (last modified: 2023.01.22).
* Request handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -52,7 +52,7 @@ class Request
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Allow calling the instance as a function (proxies to request).
Expand Down
4 changes: 2 additions & 2 deletions src/YAML.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* YAML handler (last modified: 2023.01.22).
* YAML handler (last modified: 2023.02.23).
*
* This file is a part of the "common classes package", utilised by a number of
* packages and projects, including CIDRAM and phpMussel.
Expand Down Expand Up @@ -132,7 +132,7 @@ class YAML
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
public const VERSION = '2.9.4';
public const VERSION = '2.9.5';

/**
* Can optionally begin processing data as soon as the object is
Expand Down

0 comments on commit bf28275

Please sign in to comment.