Skip to content

Latest commit

 

History

History
100 lines (62 loc) · 2.6 KB

CHANGELOG.md

File metadata and controls

100 lines (62 loc) · 2.6 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

For a full diff see 2.1.0...main.

For a full diff see 2.0.1...2.1.0.

Added

  • Added possibility to create a FrozenClock by freezing a SystemClock (#143), by @localheinz

For a full diff see 2.0.0...2.0.1.

Fixed

  • Removed an inappropriate replace configuration from composer.json (#57), by @localheinz

For a full diff see 1.0.0...2.0.0.

Changed

  • Renamed vendor namespace Localheinz to Ergebnis after move to @ergebnis (#52), by @localheinz

    Run

    $ composer remove localheinz/clock
    

    and

    $ composer require ergebnis/clock
    

    to update.

    Run

    $ find . -type f -exec sed -i '.bak' 's/Localheinz\\Clock/Ergebnis\\Clock/g' {} \;
    

    to replace occurrences of Localheinz\Clock with Ergebnis\Clock.

    Run

    $ find -type f -name '*.bak' -delete
    

    to delete backup files created in the previous step.

  • Removed Interface suffix (#53), by @localheinz

Fixed

For a full diff see 36912f6...1.0.0.

Added

  • Added SystemClock (#1), by @localheinz
  • Added FrozenClock (#2), by @localheinz