Skip to content

Commit

Permalink
Update CHANGELOG and constants for v4.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Feb 4, 2018
1 parent 7471342 commit 66ffe9b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## Version 4.4.0 (2018-02-04)

* Fixed [#90](https://github.com/paragonie/halite/issues/90):
* Introduced [`WeakReadOnlyFile`](https://github.com/paragonie/halite/blob/master/doc/Classes/Stream/WeakReadOnlyFile.md),
an alternative to [`ReadOnlyFile`](https://github.com/paragonie/halite/blob/master/doc/Classes/Stream/ReadOnlyFile.md)
that allows file modes other than `rb`. The TOCTOU security guarantees are therefore
slightly weaker with this class (hence the "Weak" part of the name).
* Updated [`File`](https://github.com/paragonie/halite/blob/master/doc/Classes/File.md)
to allow stream objects (`ReadOnlyFile` and `MutableFile`) to be passed direclty instead
of strings (for filenames) and resources (for open file handles).

## Version 4.3.1 (2018-01-30)

* Updated the `Halite::VERSION` constant which was previously still `4.2.0`.
Expand Down
2 changes: 1 addition & 1 deletion src/Halite.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
final class Halite
{
const VERSION = '4.3.1';
const VERSION = '4.4.0';

const HALITE_VERSION_KEYS = "\x31\x40\x04\x00";
const HALITE_VERSION_FILE = "\x31\x41\x04\x00";
Expand Down

0 comments on commit 66ffe9b

Please sign in to comment.