Bugfixes Release.

Fixes

  • Fixes setters and modifiers (start_of()/end_of()) to properly apply DST transitions.

    import pendulum
    
    dt = pendulum.create(2013, 8, 1, 0, 0, 0, 0, 'Europe/Paris')
    # <Pendulum [2013-08-01T00:00:00+02:00]>
    dt.start_of('year')
    # <Pendulum [2013-01-01T00:00:00+01:00]>
    
  • Fixes timezone file loading on some installs (See #34) (Thanks to mayfield)