Releases: itsnubix/nowcal
Releases · itsnubix/nowcal
v1.2.0
Feats 💅
- Adds a UID, method, and sequence methods
v1.1.0
New features 💅
- Adds timezone support, add any Olsen string timezone
- Adds support for customizing UID which can allow you to replace an event
- Allow callbacks to return additional types when setting
Bug fixes 🐛
- Allow start/end/timezone/duration to take DateTime/DateInterval/DateTimeZone values properly.
v1.0.0
v1 release
Removes extraneous dependencies and upgrade to work with new versions of PHP.
v0.5.2
adds uuid dep
v0.5.1
Add L9 support
v0.4.0
Add L8 support.
v0.3.0
Update support to include L5/6/7
v0.2.0
Update to work with Carbon 2 and Illuminate\Support 6.*
v0.1.7
Adds ability for duration to be set
NowCal::create()
->duration('1 h');
v0.1.6
Adds ability for attribute setters to take a callback. Ex:
$eventIsNow = true;
NowCal::create()
->start(function() use ($eventIsNow) {
if ($eventIsNow) {
return 'now';
} else {
return 'tomorrow';
}
});