File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ This release cleans up a lot of older code and makes some small modifications to
8
8
Pythonic. 0.6.0 includes support for humanizing a `Delorean ` object, as well as outputing a localized string
9
9
representing the `Delorean ` object.
10
10
11
+ This change introduces the following breaking changes:
12
+ - `Delorean.epoch ` is a property, not a function.
13
+ - `Delorean.midnight ` is a property, not a function.
14
+ - `Delorean.naive ` is a property, not a function.
15
+ - `Delorean.timezone ` is a property, not a function.
16
+
11
17
- delorean/dates.py
12
18
- `is_datetime_naive() ` no longer returns True when dt is None
13
19
- `localize() ` works with pytz tzinfo objects
Original file line number Diff line number Diff line change @@ -22,6 +22,16 @@ Delorean stands on the shoulders of giants `pytz <http://pytz.sourceforge.net/>`
22
22
23
23
Pretty much make you a badass, time traveller.
24
24
25
+ Interface Update
26
+ ^^^^^^^^^^^^^^^^
27
+ Version 0.6.0 introduces the following breaking changes:
28
+ - `Delorean.epoch ` is a property, not a function.
29
+ - `Delorean.midnight ` is a property, not a function.
30
+ - `Delorean.naive ` is a property, not a function.
31
+ - `Delorean.timezone ` is a property, not a function.
32
+
33
+ Please make sure to update your code accordingly.
34
+
25
35
Getting Started
26
36
^^^^^^^^^^^^^^^
27
37
You can’t perform that action at this time.
0 commit comments