forked from jmcnamara/XlsxWriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
906 lines (561 loc) · 26.1 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
Release 0.8.7 - May 13 2016
---------------------------
* Fix for issue when inserting read-only images on Windows.
Issue `#352 <https://github.com/jmcnamara/XlsxWriter/issues/352>`_.
* Added :func:`get_worksheet_by_name()` method to allow the retrieval of a
worksheet from a workbook via its name.
* Fixed issue where internal file creation and modification dates were in the
local timezone instead of UTC.
Release 0.8.6 - April 27 2016
-----------------------------
* Fix for ``external:`` urls where the target/anchor contains spaces.
Issue `#350 <https://github.com/jmcnamara/XlsxWriter/issues/350>`_.
Release 0.8.5 - April 17 2016
-----------------------------
* Added additional documentation on :ref:`ewx_pandas` and
:ref:`pandas_examples`.
* Added fix for :func:`set_center_across` format method.
Release 0.8.4 - January 16 2016
-------------------------------
* Fix for :func:`write_url` exception when the URL contains two ``#``
location/anchors. Note, URLs like this aren't strictly valid and cannot be
entered manually in Excel.
Issue `#330 <https://github.com/jmcnamara/XlsxWriter/issues/330>`_.
Release 0.8.3 - January 14 2016
-------------------------------
* Added options to configure chart axis tick placement. See :func:`set_x_axis()`.
Release 0.8.2 - January 13 2016
-------------------------------
* Added transparency option to solid fill colors in chart areas
(:ref:`chart_formatting_fill`).
Feature request `#298 <https://github.com/jmcnamara/XlsxWriter/issues/298>`_.
Release 0.8.1 - January 12 2016
-------------------------------
* Added option to set chart tick interval.
Feature request `#251 <https://github.com/jmcnamara/XlsxWriter/issues/251>`_.
Release 0.8.0 - January 10 2016
-------------------------------
* Added additional documentation on :ref:`working_with_formulas`.
Release 0.7.9 - January 9 2016
------------------------------
* Added chart pattern fills, see :ref:`chart_formatting_pattern` and
:ref:`ex_chart_pattern`.
Feature request `#268 <https://github.com/jmcnamara/XlsxWriter/issues/268>`_.
Release 0.7.8 - January 6 2016
------------------------------
* Add checks for valid and non-duplicate worksheet table names.
Issue `#319 <https://github.com/jmcnamara/XlsxWriter/issues/319>`_.
Release 0.7.7 - October 19 2015
-------------------------------
* Added support for table header formatting and a fix for wrapped lines in the
header.
Feature request `#287 <https://github.com/jmcnamara/XlsxWriter/issues/287>`_.
Release 0.7.6 - October 7 2015
------------------------------
* Fix for images with negative offsets.
Issue `#273 <https://github.com/jmcnamara/XlsxWriter/issues/273>`_.
Release 0.7.5 - October 4 2015
------------------------------
* Allow hyperlinks longer than 255 characters when the link and anchor are
each less than or equal to 255 characters.
* Added ``hyperlink_base`` document property.
Feature request `#306 <https://github.com/jmcnamara/XlsxWriter/issues/306>`_.
Release 0.7.4 - September 29 2015
---------------------------------
* Added option to allow data validation input messages with the 'any' validate
parameter.
* Fixed url encoding of links to external files and directories.
Issue `#278 <https://github.com/jmcnamara/XlsxWriter/issues/278>`_.
Release 0.7.3 - May 7 2015
--------------------------
* Added documentation on :ref:`ewx_pandas` and :ref:`pandas_examples`.
* Added support for ``with`` context manager.
Pull request `#239 <https://github.com/jmcnamara/XlsxWriter/pull/239>`_.
Release 0.7.2 - March 29 2015
-----------------------------
* Added support for textboxes in worksheets. See :func:`insert_textbox()` and
:ref:`working_with_textboxes` for more details.
Feature request `#107 <https://github.com/jmcnamara/XlsxWriter/issues/107>`_.
Release 0.7.1 - March 23 2015
-----------------------------
* Added gradient fills to chart objects such as the plot area of columns. See
:ref:`chart_formatting_gradient` and :ref:`ex_chart_gradient`.
Feature request `#228 <https://github.com/jmcnamara/XlsxWriter/issues/228>`_.
Release 0.7.0 - March 21 2015
-----------------------------
* Added support for display units in chart axes. See :func:`set_x_axis()`.
Feature request `#185 <https://github.com/jmcnamara/XlsxWriter/issues/185>`_.
* Added ``nan_inf_to_errors`` :func:`Workbook` constructor option to allow
mapping of Python `nan/inf` value to Excel error formulas in ``write()`` and
``write_number()``.
Feature request `#150 <https://github.com/jmcnamara/XlsxWriter/issues/150>`_.
Release 0.6.9 - March 19 2015
-----------------------------
* Added support for clustered category charts. See :ref:`ex_chart_clustered`
for details.
Feature request `#180 <https://github.com/jmcnamara/XlsxWriter/issues/180>`_.
* Refactored the :ref:`format` and formatting documentation.
Release 0.6.8 - March 17 2015
-----------------------------
* Added option to combine two different chart types. See the
:ref:`chart_combined_charts` section and :ref:`ex_chart_combined` and
:ref:`ex_chart_pareto` for more details.
Feature request `#72 <https://github.com/jmcnamara/XlsxWriter/issues/72>`_.
Release 0.6.7 - March 1 2015
----------------------------
* Added option to add function value in worksheet :func:`add_table`.
Feature request `#216 <https://github.com/jmcnamara/XlsxWriter/issues/216>`_.
* Fix for A1 row/col numbers below lower bound.
Issue `#212 <https://github.com/jmcnamara/XlsxWriter/issues/212>`_.
Release 0.6.6 - January 16 2015
-------------------------------
* Fix for incorrect shebang line in `vba_extract.py` packaged in wheel.
Issue `#211 <https://github.com/jmcnamara/XlsxWriter/issues/211>`_.
* Added docs and example for diagonal cell border.
See :ref:`ex_diagonal_border`.
Release 0.6.5 - December 31 2014
--------------------------------
* Added worksheet quoting for chart names in lists.
Issue `#205 <https://github.com/jmcnamara/XlsxWriter/issues/205>`_.
* Added docs on how to find and set VBA codenames.
Issue `#202 <https://github.com/jmcnamara/XlsxWriter/issues/202>`_.
* Fix Python3 issue with unused charts.
Issue `#200 <https://github.com/jmcnamara/XlsxWriter/issues/200>`_.
* Enabled warning for missing category is scatter chart.
Issue `#197 <https://github.com/jmcnamara/XlsxWriter/issues/197>`_.
* Fix for upper chart style limit. Increased the chart style limit from
42 to the correct 48.
Issue `#192 <https://github.com/jmcnamara/XlsxWriter/issues/192>`_.
* Raise warning if a chart is inserted more than once.
Issue `#184 <https://github.com/jmcnamara/XlsxWriter/issues/184>`_.
Release 0.6.4 - November 15 2014
--------------------------------
* Fix for issue where fonts applied to data labels raised exception.
Issue `#179 <https://github.com/jmcnamara/XlsxWriter/issues/179>`_.
* Added option to allow explicit text axis types for charts, similar to date
axes.
Feature request `#178 <https://github.com/jmcnamara/XlsxWriter/issues/178>`_.
* Fix for issue where the bar/column chart gap and overlap weren't
applied to the secondary axis.
Issue `#177 <https://github.com/jmcnamara/XlsxWriter/issues/177>`_.
Release 0.6.3 - November 6 2014
-------------------------------
* Added support for adding VBA macros to workbooks. See :ref:`macros`.
Feature request `#126 <https://github.com/jmcnamara/XlsxWriter/issues/126>`_.
Release 0.6.2 - November 1 2014
-------------------------------
* Added chart axis line and fill properties.
Feature request `#88 <https://github.com/jmcnamara/XlsxWriter/issues/88>`_.
Release 0.6.1 - October 29 2014
-------------------------------
* Added chart specific handling of data label positions since not all positions
are available for all chart types.
Issue `#170 <https://github.com/jmcnamara/XlsxWriter/issues/170>`_.
* Added number formatting
(issue `#130 <https://github.com/jmcnamara/XlsxWriter/issues/130>`_),
font handling, separator and legend key for data labels.
See :ref:`chart_series_option_data_labels`
* Fix for non-quoted worksheet names containing spaces and non-alphanumeric
characters.
Issue `#167 <https://github.com/jmcnamara/XlsxWriter/issues/167>`_.
Release 0.6.0 - October 15 2014
-------------------------------
* Added option to add images to headers and footers. See
:ref:`ex_headers_footers`.
Feature request `#133 <https://github.com/jmcnamara/XlsxWriter/issues/133>`_.
* Fixed issue where non 96dpi images weren't scaled properly in Excel.
Issue `#164 <https://github.com/jmcnamara/XlsxWriter/issues/164>`_.
* Added option to not scale header/footer with page. See :func:`set_header`.
Feature request `#134 <https://github.com/jmcnamara/XlsxWriter/issues/134>`_.
Release 0.5.9 - October 11 2014
-------------------------------
* Removed ``egg_base`` requirement from ``setup.cfg`` which was preventing
installation on Windows.
Issue `#162 <https://github.com/jmcnamara/XlsxWriter/issues/162>`_.
* Fix for issue where X axis title formula was overwritten by the Y axis
title.
Issue `#161 <https://github.com/jmcnamara/XlsxWriter/issues/161>`_.
Release 0.5.8 - September 28 2014
---------------------------------
* Added support for Doughnut charts.
Feature request `#157 <https://github.com/jmcnamara/XlsxWriter/issues/157>`_.
* Added support for wheel packages.
Feature request `#156 <https://github.com/jmcnamara/XlsxWriter/issues/156>`_.
* Made the exception handling in ``write()`` clearer for unsupported types so
that it raises a more accurate TypeError instead of a ValueError.
Issue `#153 <https://github.com/jmcnamara/XlsxWriter/issues/153>`_.
Release 0.5.7 - August 13 2014
------------------------------
* Added support for :func:`insert_image` images from byte streams to allow
images from URLs and other sources.
Feature request `#118 <https://github.com/jmcnamara/XlsxWriter/issues/118>`_.
* Added :func:`write_datetime` support for datetime.timedelta.
Feature request `#128 <https://github.com/jmcnamara/XlsxWriter/issues/128>`_.
Release 0.5.6 - July 22 2014
----------------------------
* Fix for spurious exception message when :func:`close()` isn't used.
Issue `#131 <https://github.com/jmcnamara/XlsxWriter/issues/131>`_.
* Fix for formula string values that look like numbers.
Issue `#122 <https://github.com/jmcnamara/XlsxWriter/issues/122>`_.
* Clarify :func:`print_area()` documentation for complete row/column ranges.
Issue `#139 <https://github.com/jmcnamara/XlsxWriter/issues/139>`_.
* Fix for unicode strings in data validation lists.
Issue `#135 <https://github.com/jmcnamara/XlsxWriter/issues/135>`_.
Release 0.5.5 - May 6 2014
--------------------------
* Fix for incorrect chart offsets in :func:`insert_chart()` and
:func:`set_size()`.
Release 0.5.4 - May 4 2014
--------------------------
* Added image positioning option to :func:`insert_image` to control how
images are moved in relation to surrounding cells.
Feature request `#117 <https://github.com/jmcnamara/XlsxWriter/issues/117>`_.
* Fix for chart ``error_bar`` exceptions.
Issue `#115 <https://github.com/jmcnamara/XlsxWriter/issues/115>`_.
* Added clearer reporting of nested exceptions in ``write()`` methods.
Issue `#108 <https://github.com/jmcnamara/XlsxWriter/issues/108>`_.
* Added support for ``inside_base`` data label position in charts.
Release 0.5.3 - February 20 2014
--------------------------------
* Added checks and warnings for data validation limits.
Issue `#89 <https://github.com/jmcnamara/XlsxWriter/issues/89>`_.
* Added option to add hyperlinks to images. Thanks to Paul Tax.
* Added Python 3 Http server example. Thanks to Krystian Rosinski.
* Added :func:`set_calc_mode` method to control automatic calculation of
formulas when worksheet is opened. Thanks to Chris Tompkinson.
* Added :func:`use_zip64` method to allow ZIP64 extensions when writing
very large files.
* Fix to handle '0' and other number like strings as number formats.
Issue `#103 <https://github.com/jmcnamara/XlsxWriter/issues/103>`_.
* Fix for missing images in ``in_memory`` mode.
Issue `#102 <https://github.com/jmcnamara/XlsxWriter/issues/102>`_.
Release 0.5.2 - December 31 2013
--------------------------------
* Added date axis handling to charts. See :ref:`ex_chart_date_axis`.
Feature request `#73 <https://github.com/jmcnamara/XlsxWriter/issues/73>`_.
* Added support for non-contiguous chart ranges.
Feature request `#44 <https://github.com/jmcnamara/XlsxWriter/issues/44>`_.
* Fix for low byte and control characters in strings.
Issue `#86 <https://github.com/jmcnamara/XlsxWriter/issues/86>`_.
* Fix for chart titles with exclamation mark.
Issue `#83 <https://github.com/jmcnamara/XlsxWriter/issues/83>`_.
* Fix to remove duplicate :func:`set_column` entries.
Issue `#82 <https://github.com/jmcnamara/XlsxWriter/issues/82>`_.
Release 0.5.1 - December 2 2013
-------------------------------
* Added interval unit option for category axes.
Feature request `#69 <https://github.com/jmcnamara/XlsxWriter/issues/69>`_.
* Fix for axis name font rotation.
* Fix for several minor issues with Pie chart legends.
Release 0.5.0 - November 17 2013
--------------------------------
* Added :ref:`Chartsheets <Chartsheet>` to allow single worksheet charts.
Feature request `#10 <https://github.com/jmcnamara/XlsxWriter/issues/10>`_.
Release 0.4.9 - November 17 2013
--------------------------------
* Added :ref:`chart object positioning and sizing <chart_layout>` to allow
positioning of plotarea, legend, title and axis names.
Feature request `#66 <https://github.com/jmcnamara/XlsxWriter/issues/66>`_.
* Added :func:`set_title()` ``none`` option to turn off automatic titles.
* Improved :func:`define_name()` name validation.
* Fix to prevent modification of user parameters in
:func:`conditional_format()`.
Release 0.4.8 - November 13 2013
--------------------------------
* Added ``in_memory`` :func:`Workbook` constructor option to allow XlsxWriter
to work on Google App Engine.
Feature request `#28 <https://github.com/jmcnamara/XlsxWriter/issues/28>`_.
Release 0.4.7 - November 9 2013
-------------------------------
* Added fix for markers on non-marker scatter charts.
Issue `#62 <https://github.com/jmcnamara/XlsxWriter/issues/62>`_.
* Added custom error bar option. Thanks to input from Alex Birmingham.
* Changed Html docs to Bootstrap theme.
* Added :ref:`ex_merge_rich`.
Release 0.4.6 - October 23 2013
-------------------------------
* Added font formatting to chart legends.
Release 0.4.5 - October 21 2013
-------------------------------
* Added ``position_axis`` chart axis option.
* Added optional list handling for chart names.
Release 0.4.4 - October 16 2013
-------------------------------
* Documented use of :ref:`cell utility <cell_utility>` functions.
* Fix for tables added in non-sequential order. Closes
`#51 <https://github.com/jmcnamara/XlsxWriter/issues/51>`_ reported by
calfzhou.
Release 0.4.3 - September 12 2013
---------------------------------
* Fix for comments overlying columns with non-default width.
Issue `#45 <https://github.com/jmcnamara/XlsxWriter/issues/45>`_.
Release 0.4.2 - August 30 2013
------------------------------
* Added a default blue underline hyperlink format for :func:`write_url()`.
* Added :func:`Workbook` constructor options ``strings_to_formulas`` and
``strings_to_urls`` to override default conversion of strings in write().
Release 0.4.1 - August 28 2013
------------------------------
* Fix for charts and images that cross rows and columns that are hidden or
formatted but which don't have size changes. Issue
`#42 <https://github.com/jmcnamara/XlsxWriter/issues/42>`_ reported by
Kristian Stobbe.
Release 0.4.0 - August 26 2013
------------------------------
* Added more generic support for JPEG files. Issue
`#40 <https://github.com/jmcnamara/XlsxWriter/issues/40>`_ reported by Simon
Breuss.
* Fix for harmless Python 3 installation warning. Issue
`#41 <https://github.com/jmcnamara/XlsxWriter/issues/41>`_ reported by James
Reeves.
Release 0.3.9 - August 24 2013
------------------------------
* Added fix for minor issue with :func:`insert_image` for images that extend
over several cells.
* Added fix to ensure formula calculation on load regardless of Excel version.
Release 0.3.8 - August 23 2013
------------------------------
* Added handling for Decimal(), Fraction() and other float types to the
:func:`write()` function.
* Added Python 2.5 and Jython support. Thanks to Jonas Diemer for the patch.
Release 0.3.7 - August 16 2013
------------------------------
* Added :func:`write_boolean()` function to write Excel boolean values. Feature request
`#37 <https://github.com/jmcnamara/XlsxWriter/issues/37>`_. Also added
explicit handling of Python bool values to the :func:`write()` function.
* Changed :func:`Workbook` constructor option
``strings_to_numbers`` default option to False so that there is no implicit
conversion of numbers in strings to numbers. The previous behavior can be
obtained by setting the constructor option to True.
**Note** This is a backward incompatibility.
Release 0.3.6 - July 26 2013
-----------------------------
* Simplified import based on a suggestion from John Yeung. Feature request
`#26 <https://github.com/jmcnamara/XlsxWriter/issues/26>`_.
* Fix for NAN/INF converted to invalid numbers in write(). Issue
`#30 <https://github.com/jmcnamara/XlsxWriter/issues/30>`_.
* Added :func:`Workbook` constructor option ``strings_to_numbers`` to
override default conversion of number strings to numbers in write().
* Added :func:`Workbook` constructor option ``default_date_format`` to
allow a default date format string to be set. Feature request
`#5 <https://github.com/jmcnamara/XlsxWriter/issues/5>`_.
Release 0.3.5 - June 28 2013
-----------------------------
* Reverted back to using codecs for file encoding (versions <= 0.3.1) to avoid
numerous UTF-8 issues in Python2/3.
Release 0.3.4 - June 27 2013
-----------------------------
* Added Chart line smoothing option. Thanks to Dieter Vandenbussche.
* Added Http Server example (:ref:`ex_http_server`). Thanks to
Alexander Afanasiev.
* Fixed inaccurate column width calculation. Closes
`#27 <https://github.com/jmcnamara/XlsxWriter/issues/27>`_. Thanks to
John Yeung.
* Added chart axis font rotation.
Release 0.3.3 - June 10 2013
-----------------------------
* Minor packaging fixes
`#14 <https://github.com/jmcnamara/XlsxWriter/issues/14>`_ and
`#19 <https://github.com/jmcnamara/XlsxWriter/issues/19>`_.
* Fixed explicit UTF-8 file encoding for Python 3.
PR from Alexandr Shadchin,
`#15 <https://github.com/jmcnamara/XlsxWriter/issues/15>`_.
* Fixed invalid string formatting resulted in misleading stack trace.
PR from Andrei Korostelev,
`#21 <https://github.com/jmcnamara/XlsxWriter/issues/21>`_.
Release 0.3.2 - May 1 2013
-----------------------------
* Speed optimizations. The module is now 10-15% faster on average.
Release 0.3.1 - April 27 2013
-----------------------------
* Added chart support. See the :ref:`chart_class`, :ref:`working_with_charts`
and :ref:`chart_examples`.
Release 0.3.0 - April 7 2013
-----------------------------
* Added worksheet sparklines. See :ref:`sparklines`, :ref:`ex_sparklines1` and
:ref:`ex_sparklines2`
Release 0.2.9 - April 7 2013
-----------------------------
* Added worksheet tables. See :ref:`tables` and :ref:`ex_tables`.
* Tested with the new Python stable releases 2.7.4 and 3.3.1. All tests now
pass in the following versions:
* Python 2.6
* Python 2.7.2
* Python 2.7.3
* Python 2.7.4
* Python 3.1
* Python 3.2
* Python 3.3.0
* Python 3.3.1
* There are now over 700 unit tests including more than 170 tests that
compare against the output of Excel.
Release 0.2.8 - April 4 2013
-----------------------------
* Added worksheet outlines and grouping. See :ref:`outlines`.
Release 0.2.7 - April 3 2013
-----------------------------
* Added :func:`set_default_row` method. See :ref:`ex_hide_row_col`.
* Added hide_row_col.py, hide_sheet.py and text_indent.py examples.
Release 0.2.6 - April 1 2013
-----------------------------
* Added :func:`freeze_panes` and :func:`split_panes` methods.
See :ref:`ex_panes` .
* Added :func:`set_selection` method to select worksheet cell or range of
cells.
Release 0.2.5 - April 1 2013
-----------------------------
* Added additional :func:`Workbook` parameters ``'tmpdir'`` and
``'date_1904'``.
Release 0.2.4 - March 31 2013
-----------------------------
* Added :func:`Workbook` ``'constant_memory'`` constructor property to
minimize memory usage when writing large files. See :ref:`memory_perf`
for more details.
* Fixed bug with handling of UTF-8 strings in worksheet names (and probably
some other places as well). Reported by Josh English.
* Fixed bug where temporary directory used to create xlsx files wasn't
cleaned up after program close.
Release 0.2.3 - March 27 2013
-----------------------------
* Fixed bug that was killing performance for medium sized files. The module
is now 10x faster than previous versions. Reported by John Yeung.
Release 0.2.2 - March 27 2013
-----------------------------
* Added worksheet data validation options. See the :func:`data_validation`
method, :ref:`working_with_data_validation` and :ref:`ex_data_valid`.
* There are now over 600 unit tests including more than 130 tests that
compare against the output of Excel.
Release 0.2.1 - March 25 2013
-----------------------------
* Added support for datetime.datetime, datetime.date and datetime.time
to the :func:`write_datetime` method. GitHub issue
`#3 <https://github.com/jmcnamara/XlsxWriter/issues/3>`_.
Thanks to Eduardo (eazb) and Josh English for the prompt.
Release 0.2.0 - March 24 2013
-----------------------------
* Added conditional formatting. See the :func:`conditional_format` method,
:ref:`working_with_conditional_formats` and :ref:`ex_cond_format`.
Release 0.1.9 - March 19 2013
-----------------------------
* Added Python 2.6 support. All tests now pass in the following versions:
* Python 2.6
* Python 2.7.2
* Python 2.7.3
* Python 3.1
* Python 3.2
* Python 3.3.0
Release 0.1.8 - March 18 2013
-----------------------------
* Fixed Python 3 support.
Release 0.1.7 - March 18 2013
-----------------------------
* Added the option to write cell comments to a worksheet. See
:func:`write_comment` and :ref:`cell_comments`.
Release 0.1.6 - March 17 2013
-----------------------------
* Added :func:`insert_image` worksheet method to support inserting PNG and
JPEG images into a worksheet. See also the example program
:ref:`ex_insert_image`.
* There are now over 500 unit tests including more than 100 tests that
compare against the output of Excel.
Release 0.1.5 - March 10 2013
-----------------------------
* Added the :func:`write_rich_string` worksheet method to allow writing of
text with multiple formats to a cell. Also added example program:
:ref:`ex_rich_strings`.
* Added the :func:`hide` worksheet method to hide worksheets.
* Added the :func:`set_first_sheet()` worksheet method.
Release 0.1.4 - March 8 2013
----------------------------
* Added the :func:`protect` worksheet method to allow protection of cells
from editing. Also added example program: :ref:`ex_protection`.
Release 0.1.3 - March 7 2013
----------------------------
* Added worksheet methods:
* :func:`set_zoom` for setting worksheet zoom levels.
* :func:`right_to_left` for middle eastern versions of Excel.
* :func:`hide_zero` for hiding zero values in cells.
* :func:`set_tab_color` for setting the worksheet tab color.
Release 0.1.2 - March 6 2013
----------------------------
* Added autofilters. See :ref:`working_with_autofilters` for more details.
* Added the :func:`write_row` and :func:`write_column` worksheet methods.
Release 0.1.1 - March 3 2013
----------------------------
* Added the :func:`write_url` worksheet method for writing hyperlinks to
a worksheet.
Release 0.1.0 - February 28 2013
--------------------------------
* Added the :func:`set_properties` workbook method for setting document
properties.
* Added several new examples programs with documentation. The examples now
include:
* array_formula.py
* cell_indentation.py
* datetimes.py
* defined_name.py
* demo.py
* doc_properties.py
* headers_footers.py
* hello_world.py
* merge1.py
* tutorial1.py
* tutorial2.py
* tutorial3.py
* unicode_polish_utf8.py
* unicode_shift_jis.py
Release 0.0.9 - February 27 2013
--------------------------------
* Added the :func:`define_name` method to create defined names and ranges
in a workbook or worksheet.
* Added the :func:`worksheets` method as an accessor for the worksheets in a
workbook.
Release 0.0.8 - February 26 2013
--------------------------------
* Added the :func:`merge_range` method to merge worksheet cells.
Release 0.0.7 - February 25 2013
--------------------------------
* Added final page setup methods to complete the page setup section.
* :func:`print_area`
* :func:`fit_to_pages`
* :func:`set_start_page`
* :func:`set_print_scale`
* :func:`set_h_pagebreaks`
* :func:`set_v_pagebreaks`
Release 0.0.6 - February 22 2013
--------------------------------
* Added page setup method.
* :func:`print_row_col_headers`
Release 0.0.5 - February 21 2013
--------------------------------
* Added page setup methods.
* :func:`repeat_rows`
* :func:`repeat_columns`
Release 0.0.4 - February 20 2013
--------------------------------
* Added Python 3 support with help from John Evans. Tested with:
* Python-2.7.2
* Python-2.7.3
* Python-3.2
* Python-3.3.0
* Added page setup methods.
* :func:`center_horizontally`
* :func:`center_vertically`
* :func:`set_header`
* :func:`set_footer`
* :func:`hide_gridlines`
Release 0.0.3 - February 19 2013
--------------------------------
* Added page setup method.
* :func:`set_margins`
Release 0.0.2 - February 18 2013
--------------------------------
* Added page setup methods.
* :func:`set_landscape`
* :func:`set_portrait`
* :func:`set_page_view`
* :func:`set_paper`
* :func:`print_across`
Release 0.0.1 - February 17 2013
--------------------------------
* First public release.