You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.0 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536
  1. # Change Log
  2. ## [1.2.0] - 2017-01-22
  3. ### Added
  4. - Added IDE, CodeSniffer, and StyleCI.IO support
  5. ### Changed
  6. - Switched to PSR-4 Autoloading
  7. ### Fixed
  8. - 0 step expressions are handled better
  9. - Fixed `DayOfMonth` validation to be more strict
  10. - Typos
  11. ## [1.1.0] - 2016-01-26
  12. ### Added
  13. - Support for non-hourly offset timezones
  14. - Checks for valid expressions
  15. ### Changed
  16. - Max Iterations no longer hardcoded for `getRunDate()`
  17. - Supports DateTimeImmutable for newer PHP verions
  18. ### Fixed
  19. - Fixed looping bug for PHP 7 when determining the last specified weekday of a month
  20. ## [1.0.3] - 2013-11-23
  21. ### Added
  22. - Now supports expressions with any number of extra spaces, tabs, or newlines
  23. ### Changed
  24. - Using static instead of self in `CronExpression::factory`
  25. ### Fixed
  26. - Fixes issue [#28](https://github.com/mtdowling/cron-expression/issues/28) where PHP increments of ranges were failing due to PHP casting hyphens to 0
  27. - Only set default timezone if the given $currentTime is not a DateTime instance ([#34](https://github.com/mtdowling/cron-expression/issues/34))