1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-02-17 06:54:15 +01:00
php-rrule/CHANGELOG.md

52 lines
1.8 KiB
Markdown
Raw Normal View History

2016-03-23 12:04:41 +02:00
# Changelog
2016-03-11 11:20:11 +02:00
## [Unreleased]
2016-04-09 18:37:43 +03:00
## [1.2.0] - 2016-04-09
2016-03-31 15:42:10 +03:00
### Added
2016-04-03 16:41:30 +03:00
- Support for fallback locale when using `RRule::humanReadable()` [#11](https://github.com/rlanvin/php-rrule/pull/11)
2016-03-31 15:42:10 +03:00
- Dutch translation (NL) [#9](https://github.com/rlanvin/php-rrule/pull/9)
2016-04-03 16:41:30 +03:00
### Fixed
2016-04-09 18:37:43 +03:00
- Fixed fatal error Locale class not found when intl extension is not loaded [#10](https://github.com/rlanvin/php-rrule/issues/10)
2016-04-03 16:41:30 +03:00
2016-03-30 12:19:05 +03:00
## [1.1.0] - 2016-03-30
2016-03-23 12:07:50 +02:00
### Added
- New class `RRule\RSet` (recurrence set) that can combine multiple RRULE, EXRULE, RDATE and EXDATE. [#7](https://github.com/rlanvin/php-rrule/issues/7)
- New interface `RRule\RRuleInterface` to unify `RRule` and `RSet`
- New methods: `isFinite()`, `isInfinite()`
### Fixed
2016-03-21 21:55:40 +02:00
- Fix bug preventing the iteration of multiple instances of RRule at the same time
- Fix occursAt failing when the date passed was a different timezone [#8](https://github.com/rlanvin/php-rrule/pull/8)
- Fix bug at WEEKLY frequency with a partially filled cache in some circumstances
- Fix various reference bugs causing corruption of the cache in some circumstances (related to DateTime object being mutable)
2016-03-21 21:55:40 +02:00
2016-03-23 17:23:09 +02:00
### Removed
- The alias `RRule::occursOn` has been removed (use `occursAt` instead)
2016-03-11 11:20:11 +02:00
## [1.0.1] - 2016-03-11
### Fixed
2016-03-11 11:57:57 +02:00
- Ensure the results are returned in the same timezone as DTSTART. [#6](https://github.com/rlanvin/php-rrule/issues/6)
- LogicException namespacing bug. [#3](https://github.com/rlanvin/php-rrule/issues/3)
2016-03-11 11:20:11 +02:00
## 1.0.0 - 2016-03-02
### Added
- First release, everything before that was unversioned (`dev-master` was used).
2016-04-09 18:37:43 +03:00
[Unreleased]: https://github.com/rlanvin/php-rrule/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/rlanvin/php-rrule/compare/v1.1.0...v1.2.0
2016-03-30 12:19:05 +03:00
[1.1.0]: https://github.com/rlanvin/php-rrule/compare/v1.0.1...v1.1.0
2016-04-03 16:41:30 +03:00
[1.0.1]: https://github.com/rlanvin/php-rrule/compare/v1.0.0...v1.0.1