Skip to content

Commit

Permalink
v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Feb 14, 2022
1 parent 11bf2e8 commit 5f617f4
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 20 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 1.8.0 ===
MINOR RELEASE.

- [2022.01.23; Maikuolan]: Provided a means to avoid some theoretical
problems with data reconstruction by the YAML handler.

Expand Down Expand Up @@ -58,6 +63,9 @@ found at:
- [2022.02.14; Maikuolan]: Added support for chomping to the YAML handler.
Added support for infinity, negative infinity, and NAN to the YAML handler.

Caleb M (Maikuolan),
February 14, 2022.

=== Version/Release 1.7.0 ===
MINOR RELEASE.

Expand Down
2 changes: 1 addition & 1 deletion _docs/YAML.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ __Examples from [2.4. Tags](https://yaml.org/spec/1.2.2/#24-tags)__ | __Will usi
Example 2.19 Integers | Yes.
Example 2.20 Floating Point | Still working on the exponentials, but yes for the others.
Example 2.21 Miscellaneous | It isn't possible to have `null` keys in PHP arrays (or collections, to use YAML terminology). When assigning `null` to a key, PHP silently casts it to an empty string. Aside from that though, yes; supported.
Example 2.22 Timestamps | *Kind of*. The data will there as expected, but there's no native "timestamp" data type available to PHP, and the YAML handler treats timestamps as normal strings, so you'll get strings.
Example 2.22 Timestamps | *Kind of*. The data will be there as expected, but there's no native "timestamp" data type available to PHP, and the YAML handler treats timestamps as normal strings, so you'll get strings.
Example 2.23 Various Explicit Tags | Obviously, the YAML handler doesn't support any kind of `!something` tag. Aside from that though, yes; supported.
Example 2.24 Global Tags | The YAML handler doesn't support, and ignores global tags, so no; not supported.
Example 2.25 Unordered Sets | Yes.
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: 2022.02.12).
* A simple, unified cache handler (last modified: 2022.02.14).
*
* 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 @@ -165,7 +165,7 @@ class Cache
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Complex string handler (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Delayed file IO class (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Demojibakefier (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Events orchestrator (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* Adds a new event handler.
Expand Down
4 changes: 2 additions & 2 deletions src/L10N.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* L10N handler (last modified: 2022.02.13).
* L10N handler (last modified: 2022.02.14).
*
* 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 L10N
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* Constructor.
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: 2022.02.12).
* Number formatter (last modified: 2022.02.14).
*
* 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 @@ -1042,7 +1042,7 @@ class NumberFormatter
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Operation handler (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* 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: 2022.02.12).
* Request handler (last modified: 2022.02.14).
*
* 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
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

/**
* Allow calling the instance as a function (proxies to request).
Expand Down
2 changes: 1 addition & 1 deletion src/YAML.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class YAML
* be needed by some implementations to ensure compatibility).
* @link https://github.com/Maikuolan/Common/tags
*/
const VERSION = '1.7.0';
const VERSION = '1.8.0';

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

0 comments on commit 5f617f4

Please sign in to comment.