Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/date_time/xmldoc/changes.xml @ 29

Last change on this file since 29 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 27.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN"
3"../../../tools/boostbook/dtd/boostbook.dtd">
4
5<!-- Copyright (c) 2001-2006 CrystalClear Software, Inc.
6     Subject to the Boost Software License, Version 1.0.
7     (See accompanying file LICENSE-1.0 or  http://www.boost.org/LICENSE-1.0)
8-->
9
10<section id="date_time.changes">
11  <title>Change History</title>
12 
13  <!-- if each new change tgroup has a "Bug Fix" as the first "Type", the columns will line up nicely -->
14
15  <bridgehead renderas="sect3">Changes from Boost 1.33 to 1.34 (date_time 1.04 to 1.05)</bridgehead>
16  <informaltable frame="all">
17    <tgroup cols="2">
18      <thead>
19        <row>
20          <entry>Type</entry>
21          <entry>Description</entry>
22        </row>
23      </thead>
24      <tbody>
25        <row>
26          <entry>Feature</entry>
27          <entry>
28             Updated the data in the date_time_zonespec.csv file to reflect new US/Canada
29             daylight savings time rules for 2007.  If you upgrade to the new file, be aware
30             that the library will only give correct answers for current/future date
31             conversions.  So if you are converting dates from earlier years the answers
32             will reflect current time zone rules not past rules.  The library doesn't support
33             historic timezone rules presently.
34          </entry>
35        </row>
36        <row>
37          <entry>Feature</entry>
38          <entry>
39              Two other dst calculation features have also been update to reflect the new
40              US/Canada timzone rules. This is the boost::date_time::us_dst_rules and
41              dst_calc_engine.  While the us_dst_rules is officially deprecated, a patch
42              by Graham Bennett has been applied which allows this class to work correctly
43              for both historical and future dates.  The dst_calc_engine was updated to also
44              work for historical and future times.  This allows the various local_adjustor
45              classes to work correctly.  There was an interface change for classes using the
46              dst_calc_engine with custom dst traits classes.  The traits classes signatures
47              changed to take a 'year' parameter on most of the methods such as end_month.
48              In addition,  2 new functions are needed on the traits classes:
49                   <code>static date_type local_dst_start_day(year_type year)</code> and
50                   <code>static date_type local_dst_end_day(year_type year)</code>.
51              Implementers should see <code>date_time/local_timezone_defs.hpp</code> for
52              examples.
53          </entry>
54        </row>
55
56        <row>
57          <entry>Bug Fix</entry>
58          <entry>Fix DST traits for Austrialia (sf# 1672139) to set end of DST at 3:00 am instead of 2:00 am.
59               
60          </entry>
61        </row>
62
63        <row>
64          <entry>Bug Fix</entry>
65          <entry>Fix a problem with potential linking error with multiple definitions due
66                 to I/O code.
67          </entry>
68        </row>
69        <row>
70          <entry>Bug Fix</entry>
71          <entry>Changed serialization code in both greg_serialize.hpp and time_serialize.hpp
72                 to eliminate warnings due to unused variables for version and file_version.
73                 Thanks to Caleb Epstein for the patch suggestion.
74          </entry>
75        </row>
76        <row>
77          <entry>Bug Fix</entry>
78          <entry>Fix regression errors that showed up under FreeBSD with GCC and the
79                 LANG environment set to russian -- changed parser to use classic
80                 locale instead of blank locale.
81          </entry>
82        </row>
83
84        <row>
85          <entry>Bug Fix</entry>
86          <entry>Changes for tracker issue 1178092 -- change in convert_to_lower to make
87                 local a const static and speed up parsing.
88          </entry>
89        </row>
90
91        <row>
92          <entry>Bug Fix</entry>
93          <entry>Patches from Ulrich Eckhardt to fix support for EVC++ 4.
94          </entry>
95        </row>
96
97        <row>
98          <entry>Feature</entry>
99          <entry>Reduce the usage of basic_stringstream as much a possible to work around
100                 a bug in the VC8 standard library. See
101                 <ulink url="http://lists.boost.org/Archives/boost/2006/02/101122.php">mailing list archive</ulink> 
102                 for more information.
103          </entry>
104        </row>
105
106
107        <row>
108          <entry>Bug Fix</entry>
109          <entry>
110          </entry>
111        </row>
112
113      </tbody>
114    </tgroup>
115  </informaltable>
116
117
118  <bridgehead renderas="sect3">Changes from Boost 1.32 to 1.33 (date_time 1.03 to 1.04)</bridgehead>
119  <informaltable frame="all">
120    <tgroup cols="2">
121      <thead>
122        <row>
123          <entry>Type</entry>
124          <entry>Description</entry>
125        </row>
126      </thead>
127      <tbody>
128        <row>
129          <entry>Bug Fix</entry>
130          <entry>Period lengths, when beginning and end points are the same, or are consecutive, were being incorrectly calculated. The corrected behavior, where end and beginning points are equal, or a period is created with a zero duration, now return a length of zero. A period where beginning and end points are consecutive will return a length of one.
131          </entry>
132        </row>
133        <row>
134          <entry>Bug Fix</entry>
135          <entry>Time_input_facet was missing functions to set iso formats. It also failed to parse time values that did not use a separator (%H%M%S). Both these bugs have been corrected.
136          </entry>
137        </row>
138        <row>
139          <entry>Feature</entry>
140          <entry>Preliminary names of ptime_facet and ptime_input_facet changed to simply time_facet and time_input_facet. The ptime_* versions have been removed all together.
141          </entry>
142        </row>
143        <row>
144          <entry>Feature</entry>
145          <entry>The from_iso_string function failed to parse fractional digits. We added code that correctly parses when input has more digits, or too few digits, that the compiled library precision. Ptimes with only a decimal are also correctly parsed.
146          </entry>
147        </row>
148        <row>
149          <entry>Bug Fix</entry>
150          <entry>The parsing mechanism in the new IO would consume the next character after a match was made. This bug presented itself when attempting to parse a period that had special value for it's beginning point.
151          </entry>
152        </row>
153        <row>
154          <entry>Bug Fix</entry>
155          <entry>The new IO system failed to provide the ability for the user to "turn on" exceptions on the stream. The failbit was also not set when parsing failed. Both of these problems have been fixed.
156          </entry>
157        </row>
158        <row>
159          <entry>Bug Fix</entry>
160          <entry>Parsing of special values, by means of from_*_string functions, has been fixed. This also effects the libraries ability to serialize special values. Time_duration now serializes as either a string or individual fields (depending on is_special()).
161          </entry>
162        </row>
163        <row>
164          <entry>Bug Fix</entry>
165          <entry>Previously, output streaming of <code>partial_date</code> would display the day as either a single or double digit integer (ie '1', or '12'). This has been corrected to always display a double digit integer (ie '01').
166          </entry>
167        </row>
168        <row>
169          <entry>Feature</entry>
170          <entry>Major new features related to management of local times.
171                 This includes the introduction of a series of new classes to
172                 represent time zones and local times (see <link linkend="date_time.local_time">Date Time Local Time</link> for complete details).
173          </entry>
174        </row>
175        <row>
176          <entry>Feature</entry>
177          <entry>Input and output facets have been re-written to support format-based
178            redefinition of formats (see <link linkend="date_time.date_time_io">Date Time IO</link> for complete details).
179          </entry>
180        </row>
181        <row>
182          <entry>Feature</entry>
183          <entry>Functions have been added to facilitate conversions between <code>tm</code> structs for <code>date</code>, <code>ptime</code>, <code>time_duration</code>, and <code>local_date_time</code>. Functions for converting <code>FILETIME</code>, and <code>time_t</code> to <code>ptime</code> are also provided. See the individual sections for details.
184          </entry>
185        </row>
186        <row>
187          <entry>Feature</entry>
188          <entry>A <code>universal_time</code> function has been added to the <code>microsec_time_clock</code> (full details of this function can be found <link linkend="ptime_from_clock">here</link>).
189          </entry>
190        </row>
191        <row>
192          <entry>Feature</entry>
193          <entry>Functions have been added to facilitate conversions between <code>tm</code> structs for <code>date</code>, <code>ptime</code>, <code>time_duration</code>, and <code>local_date_time</code>. Functions for converting <code>FILETIME</code>, and <code>time_t</code> to <code>ptime</code> are also provided. See the individual sections for details.
194          </entry>
195        </row>
196        <row>
197          <entry>Feature</entry>
198          <entry>A <code>universal_time</code> function has been added to the <code>microsec_time_clock</code> (full details of this function can be found <link linkend="ptime_from_clock">here</link>).
199          </entry>
200        </row>
201        <row>
202          <entry>Feature</entry>
203          <entry>Date-time now uses reentrant POSIX functions on those platforms that
204                 support them when BOOST_HAS_THREADS is defined.
205          </entry>
206        </row>
207        <row>
208          <entry>Bug Fix</entry>
209          <entry>Fixed a bug in serialization code where special values
210                (not-a-date-time, infinities, etc) for
211                ptime, time_duration would not read back correctly from an archive. 
212                The output serialization code wrote subfields such
213                as time_duration.seconds() which are invalid for special values and
214                thus undefined values.  Thus when read back the values could cause
215                strange behavior including execeptions on construction.
216          </entry>
217        </row>
218        <row>
219          <entry>Bug Fix</entry>
220          <entry>Fixed multiple warnings generated with various platforms/compilers.
221          </entry>
222        </row>
223        <row>
224          <entry>Bug Fix</entry>
225          <entry>Construction of a ptime with a time_duration beyond the range of 00:00 to 23:59:59.9... now adjusts the date and time to make the time_duration fall within this range (ie <code>ptime(date(2005,2,1), hours(-5))</code> -> "2005-Jan-31 19:00:00" &amp; <code>ptime(date(2005,2,1), hours(35))</code> -> "2005-Feb-02 11:00:00").
226          </entry>
227        </row>
228        <row>
229          <entry>Bug Fix</entry>
230          <entry>Time parsing now correctly handles excessive digits for fractional seconds. Leading zeros are dropped ("000100" -> 100 frac_sec), and excessive digits are truncated at the proper place ("123456789876" -> 123456 or 123456789 depending on what precision the library was compiled with).
231          </entry>
232        </row>
233        <row>
234          <entry>Bug Fix</entry>
235          <entry>Changes to the <code>boost::serialization</code> interface broke serialization compatibility for <code>date_time</code>. The user must provide a function to insure <code>date_time</code> objects are <code>const</code> before they are serialized. The function should be similar to:
236            <screen>template&lt;class archive_type, class temporal_type>
237void save_to(archive_type&amp; ar,
238             const temporal_type&amp; tt)
239{
240  ar &lt;&lt; tt;
241}</screen>
242          </entry>
243        </row>
244        <row>
245          <entry>Bug Fix</entry>
246          <entry>Use of the depricated <code>boost::tokenizer</code> interface has been updated to the current interface. This fixes compiler errors on some older compilers.
247          </entry>
248        </row>
249        <row>
250          <entry>Bug Fix</entry>
251          <entry>Templatized formatters in the legacy IO system to accept char type. Also removed calls to <code>boost::lexical_cast</code>.
252          </entry>
253        </row>
254      </tbody>
255    </tgroup>
256  </informaltable>
257
258
259  <bridgehead renderas="sect3">Changes from Boost 1.31 to 1.32 (date_time 1.02 to 1.03)</bridgehead>
260  <informaltable frame="all">
261    <tgroup cols="2">
262      <thead>
263        <row>
264          <entry>Type</entry>
265          <entry>Description</entry>
266        </row>
267      </thead>
268      <tbody>
269        <row>
270          <entry>Bug Fix</entry>
271          <entry>Snap to end of month behavior corrected for year_functor. Previously, starting
272                 from 2000-Feb-28 (leap year and not end of month) and iterating through the next
273                 leap year would result in 2004-Feb-29 instead of 2004-Feb-28. This behavior has
274                 been corrected to produce the correct result of 2004-Feb-28. Thanks to Bart Garst
275                 for this change.
276          </entry>
277        </row>
278        <row>
279          <entry>Feature</entry>
280          <entry>Free function for creating a ptime object from a FILETIME struct. This function
281                 is only available on platforms that define BOOST_HAS_FTIME.
282          </entry>
283        </row>
284        <row>
285          <entry>Feature</entry>
286          <entry>Microsecond time clock is now available on most windows compilers as well as
287                 Unix.
288          </entry>
289        </row>
290        <row>
291          <entry>Feature</entry>
292          <entry>Use of the boost::serialization library is now available with most of the
293                 date_time classes. Classes capable of serialization are: date_generator classes,
294                 date, days, date_period, greg_month, greg_weekday, greg_day, ptime, time_duration,
295                 and time_period. Thanks to Bart Garst for this change.
296          </entry>
297        </row>
298        <row>
299          <entry>Feature</entry>
300          <entry>Functions added to convert date and time classes to wstring. The library now
301                 provides to_*_wstring as well as to_*_string functions for: simple, iso,
302                 iso_extended, and sql for dates and compilers that support wstrings. Thanks to
303                 Bart Garst for this change.
304          </entry>
305        </row>
306        <row>
307          <entry>Feature</entry>
308          <entry>Period classes now handle zero length and NULL periods correctly. A NULL period
309                 is a period with a negative length. Thanks to Frank Wolf and Bart Garst for this
310                 change.
311          </entry>
312        </row>
313        <row>
314          <entry>Feature</entry>
315          <entry>Added end_of_month function to gregorian::date to return the last day of
316                 the current month represented by the date.  Result is undefined for
317                 not_a_date_time or infinities.
318          </entry>
319        </row>
320        <row>
321          <entry>Bug Fix</entry>
322          <entry>Removed incorrect usage of BOOST_NO_CWCHAR macro throughout library.
323          </entry>
324        </row>
325        <row>
326          <entry>Feature</entry>
327          <entry>New names added for some date classes. Original names are still valid but may
328                 some day be deprecated. Changes are:
329            <simplelist type='horiz' columns='3'>
330              <member>date_duration</member>
331              <member>is now</member>
332              <member>days</member>
333              <member>nth_kday_of_month</member>
334              <member>is now</member>
335              <member>nth_day_of_the_week_in_month</member>
336              <member>first_kday_of_month</member>
337              <member>is now</member>
338              <member>first_day_of_the_week_in_month</member>
339              <member>last_kday_of_month</member>
340              <member>is now</member>
341              <member>last_day_of_the_week_in_month</member>
342              <member>first_kday_after</member>
343              <member>is now</member>
344              <member>first_day_of_the_week_after</member>
345              <member>first_kday_before</member>
346              <member>is now</member>
347              <member>first_day_of_the_week_before</member>
348            </simplelist>
349          </entry>
350        </row>
351        <row>
352          <entry>Feature</entry>
353          <entry>Free functions for date generators added. Functions are: days_until_weekday, days_before_weekday, next_weekday, and previous_weekday.
354            <screen>days days_until_weekday(date, greg_weekday);
355days days_before_weekday(date, greg_weekday);
356date next_weekday(date, greg_weekday);
357date previous_weekday(date, greg_weekday);</screen>
358            Thanks to Bart Garst for this change.
359          </entry>
360        </row>
361        <row>
362          <entry>Feature</entry>
363          <entry>New experimental duration types added for months, years, and weeks. These classes
364                 also provide mathematical operators for use with date and time classes.  Be aware
365                 that adding of months or years a time or date past the 28th of a month may show
366                 non-normal mathematical properties.  This is a result of 'end-of-month'
367                 snapping used in the calculation.  The last example below illustrates the   
368                 issue. 
369           
370            <screen>months m(12);
371years y(1);
372m == y; // true
373days d(7);
374weeks w(1);
375d == w; // true
376ptime t(...);
377t += months(3);
378date d(2004,Jan,30);
379d += months(1); //2004-Feb-29
380d -= months(1); //2004-Jan-29</screen>
381            Input  streaming is not yet implemented for these types.             
382            Thanks to Bart Garst for this change.
383          </entry>
384        </row>
385        <row>
386          <entry>Feature</entry>
387          <entry>Unifying base class for date_generators brought in to gregorian namespace. See <link linkend="date_time.examples.print_holidays">Print Holidays Example</link>.
388          </entry>
389        </row>
390        <row>
391          <entry>Feature</entry>
392          <entry>Added constructors for date and ptime that allow for default construction (both)
393                 and special values construction (ptime, both now support this). Default
394                 constructors initialize the objects to not_a_date_time (NADT).
395                 <screen>ptime p_nadt(not_a_date_time);
396ptime p_posinf(pos_infin);
397ptime p; // p == NADT
398date d;  // d == NADT</screen>
399            Thanks to Bart Garst for this change.
400          </entry>
401        </row>
402        <row>
403          <entry>Feature</entry>
404          <entry>Output streaming now supports wide stream output on compiler / standard library combinations that support wide streams. This allows code like:
405            <screen>std::wstringstream wss;
406date d(2003,Aug,21);
407wss &lt;&lt; d;</screen>
408            Thanks to Bart Garst for this change.
409          </entry>
410        </row>
411        <row>
412          <entry>Feature</entry>
413          <entry>Input streaming for date and time types is now supported on both wide and narrow streams:
414            <screen>date d(not_a_date_time);
415std::stringstream ss("2000-FEB-29");
416ss &gt;&gt; d; //Feb 29th, 2000
417std::wstringstream ws("2000-FEB-29");
418ws &gt;&gt; d; //Feb 29th, 2000</screen>
419            Thanks to Bart Garst for this change.
420          </entry>
421        </row>
422        <row>
423          <entry>Bug Fix</entry>
424          <entry> Fixed bug in duration_from_string() where a string formatted with
425                  less than full amount of fractional digits created an incorrect
426                  time_duration.  With microsecond resolution for time durations
427                  the string "1:01:01.010" created a time duration of
428                  01:01:01.000010 instead of 01:01:01.010000
429          </entry>
430        </row>
431        <row>
432          <entry>Bug Fix</entry>
433          <entry>Fixed the special value constructor for gregorian::date and posix_time::ptime
434                 when constructing with min_date_time or max_date_time.  The wrong value was
435                 constructed for these.
436          </entry>
437        </row>
438      </tbody>
439    </tgroup>
440  </informaltable>
441 
442  <bridgehead renderas="sect3">Changes from Boost 1.30 to 1.31 (date_time 1.01 to 1.02)</bridgehead>
443  <informaltable frame="all">
444    <tgroup cols="2">
445      <thead>
446        <row>
447          <entry>Type</entry>
448          <entry>Description</entry>
449        </row>
450      </thead>
451      <tbody>
452        <row>
453          <entry>Bug Fix</entry>
454          <entry>Build configuration updated so dll, statically, and dynamically linkable library files are now produced with MSVC compilers. See <link linkend="date_time.buildinfo">Build/Compiler Information</link> for more details.</entry>
455        </row>
456        <row>
457          <entry>Bug Fix</entry>
458          <entry>Time_duration from_string is now correctly constructed from a negative value. (ie "-0:39:00.000") Code provided by Bart Garst.</entry>
459        </row>
460        <row>
461          <entry>Bug Fix</entry>
462          <entry>Fixed many MSVC compiler warnings when compiled with warning level 4.</entry>
463        </row>
464        <row>
465          <entry>Feature</entry>
466          <entry>Added prefix decrement operator (--) for date and time iterators. See <link linkend="date_time.posix_time.time_iterators">Time Iterators</link>  and <link linkend="date_time.gregorian.date_iterators">Date Iterators</link> for more details. Code provided by Bart Garst.</entry>
467        </row>
468        <row>
469          <entry>Feature</entry>
470          <entry>Special_values functionality added for date_duration, time_duration and time classes. Code provided by Bart Garst.</entry>
471        </row>
472        <row>
473          <entry>Bug Fix</entry>
474          <entry>Fixed time_duration_traits calculation bug which was causing time duration to be limited to 32bit range even when 64 bits were available. Thanks to Joe de Guzman for tracking this down.</entry>
475        </row>
476        <row>
477          <entry>Bug Fix</entry>
478          <entry>Provided additional operators for duration types (eg: date_duration, time_duration). This includes dividable by integer and fixes to allow +=, -= operators. Thanks to Bart Garst for writing this code. Also, the documentation of <link linkend="date_time.calculations">Calculations</link> has been improved.</entry>
479        </row>
480        <row>
481          <entry>Bug Fix</entry>
482          <entry>Added typedefs to boost::gregorian gregorian_types.hpp various date_generator function classes.</entry>
483        </row>
484        <row>
485          <entry>Feature</entry>
486          <entry>Added from_time_t function to convert time_t to a ptime.</entry>
487        </row>
488        <row>
489          <entry>Feature</entry>
490          <entry>Added a span function for combining periods. See <link linkend="date_time.gregorian.date_period">date period</link> and <link linkend="date_time.posix_time.time_period">time period</link> docs.</entry>
491        </row>
492        <row>
493          <entry>Feature</entry>
494          <entry>Added a function to time_duration to get the total number of seconds in a
495                 duration truncating any fractional seconds. In addition, other resolutions
496                 were added to allow for easy conversions. For example
497            <screen>seconds(1).total_milliseconds() == 1000
498seconds(1).total_microseconds() == 1000000
499hours(1).total_milliseconds() == 3600*1000 //3600 sec/hour
500seconds(1).total_nanoseconds() == 1000000000</screen>
501
502           </entry>
503        </row>
504        <row>
505          <entry>Feature</entry>
506          <entry>Added output streaming operators for the <link linkend="date_time.gregorian.date_algorithms">date generator</link> classes - partial_date, first_kday_after, first_kday_before, etc. Thanks to Bart Garst for this work.</entry>
507        </row>
508        <row>
509          <entry>Feature</entry>
510          <entry>Added unary- operators for durations for reversing the sign of a time duration. For example:
511            <screen>time_duration td(5,0,0); //5 hours
512td = -td; //-5 hours</screen>
513          Thanks to Bart Garst for this work.</entry>
514        </row>
515        <row>
516          <entry>Feature</entry>
517          <entry>Added support for parsing strings with 'month names'. Thus creating a date object from string now accepts multiple formats ("2003-10-31","2003-Oct-31", and "2003-October-31"). Thus, date d = from_simple_string("2003-Feb-27") is now allowed. A bad month name string ( from_simple_string("2003-SomeBogusMonthName-27")) will cause a bad_month exception. On most compilers the string compare is case insensitive. Thanks to Bart Garst for this work.</entry>
518        </row>
519        <row>
520          <entry>Feature</entry>
521          <entry>In addition to support for month names or numbers, functions have been added to create date objects from multi-ordered date strings. Ex: "January-21-2002", "2002-Jan-21", and "21-Jan-2003". See <link linkend="date_time.gregorian.date_class">Date Class</link> for more details.</entry>
522        </row>
523        <row>
524          <entry>Bug-Fix</entry><!-- leave '-' so table cell doesn't wrap -->
525          <entry>Various documentation fixes. Thanks to Bart Garst for updates.</entry>
526        </row>
527      </tbody>
528    </tgroup>
529  </informaltable>
530 
531  <bridgehead renderas="sect3">Changes from Boost 1.29 to 1.30 (date_time 1.00 to 1.01)</bridgehead>
532  <para>
533    Notice: The interface to the partial_date class (see <link linkend="date_time.gregorian.date_algorithms">date_algorithms</link>) was changed. The order of construction parameters was changed which will cause some code to fail execution. This change was made to facilitate more generic local time adjustment code. Thus instead of specifying partial_date pd(Dec,25) the code needs to be changed to partial_date pd(25, Dec);
534  </para>
535  <informaltable frame="all">
536    <tgroup cols="2">
537      <thead>
538        <row>
539          <entry>Type</entry>
540          <entry>Description</entry>
541        </row>
542      </thead>
543      <tbody>
544        <row>
545          <entry>Bug Fix</entry>
546          <entry>Added new experimental feature for Daylight Savings Time calculations. This allows traits based specification of dst rules.</entry>
547        </row>
548        <row>
549          <entry>Feature</entry>
550          <entry>Added new interfaces to calculate julian day and modified julian day to the gregorian date class. See <link linkend="date_time.gregorian.date_class">boost::gregorian::date</link>.</entry>
551        </row>
552        <row>
553          <entry>Feature</entry>
554          <entry>Add new interface to calculate iso 8601 week number for a date. See <link linkend="date_time.gregorian.date_class">boost::gregorian::date</link>.</entry>
555        </row>
556        <row>
557          <entry>Feature</entry>
558          <entry>Add an iso 8601 time date-time format (eg: YYYYMMDDTHHHMMSS) parsing function. See <link linkend="date_time.posix_time.ptime_class">Class ptime</link> for more information.</entry>
559        </row>
560        <row>
561          <entry>Feature</entry>
562          <entry> Added a length function to the period template so that both date_periods and time_periods will now support this function.</entry>
563        </row>
564        <row>
565          <entry>Bug Fix</entry>
566          <entry>Split Jamfiles so that libs/date_time/build/Jamfile only builds library and /libs/date_time/libs/test/Jamfile which runs tests.</entry>
567        </row>
568        <row>
569          <entry>Bug Fix</entry>
570          <entry>Fixed many minor documentation issues.</entry>
571        </row>
572        <row>
573          <entry>Bug Fix</entry>
574          <entry>Removed the DATE_TIME_INLINE macro which was causing link errors. This macro is no longer needed in projects using the library.</entry>
575        </row>
576        <row>
577          <entry>Bug Fix</entry>
578          <entry>Added missing typedef for year_iterator to gregorian_types.hpp</entry>
579        </row>
580        <row>
581          <entry>Bug Fix</entry>
582          <entry>Fixed problem with gregorian ostream operators that prevented the use of wide streams.</entry>
583        </row>
584        <row>
585          <entry>Bug-Fix</entry><!-- leave '-' so table cell doesn't wrap -->
586          <entry>Tighten error handling for dates so that date(2002, 2, 29) will throw a bad_day_of_month exception. Previously the date would be incorrectly constructed. Reported by sourceforge bug: 628054 among others.</entry>
587        </row>
588      </tbody>
589    </tgroup>
590  </informaltable>
591</section>
Note: See TracBrowser for help on using the repository browser.