2
0

ChangeLog 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. 2007-08-13 Federico Di Gregorio <[email protected]>
  2. * Added Test/ directory, modified Makefile to build and execute them.
  3. * Changed a couple of Expression methods to raise exceptions identicals to
  4. MS ones.
  5. * Added tests for AddExpression and ConstantExpression.
  6. * Implemented somme missing stuff in BinaryExpression.
  7. * The stuff in ExpressionUtils is very generic and does quite some
  8. redundant checks: I started splitting the stuff there into more
  9. "specific" methods that should be both understandable and fast.
  10. * Fixed the StringBuilder problem, added unique IDs to all tests,
  11. used Assert.IsNull where appropriate and fixed one more Expression
  12. method (AndAlso). Hope this is good enough for commit.
  13. 2007-07-12 Marek Safar <[email protected]>
  14. * System.Core.dll.sources: A few Beta 2 updates.
  15. 2007-07-11 Jb Evain <[email protected]>
  16. * Makefile: work on the 2.1 profile.
  17. 2007-05-11 Stephane Delcroix <[email protected]>
  18. * System/DateTimeOffset.cs:
  19. * System/InvalidTimeZoneException.cs:
  20. * System/TimeZoneInfo.AdjustmentRules.cs:
  21. * System/TimeZoneInfo.cs:
  22. * System/TimeZoneInfo.TransitionTime.cs
  23. * System/TimeZoneNotFoundException.cs: new TimeZoneInfo class
  24. * System.Core.dll.sources: Added the above files
  25. * Makefile: compile with -d:LIBC so TimeZoneInfo will look for libc
  26. defined timezones
  27. 2007-03-29 Miguel de Icaza <[email protected]>
  28. * Reapply the patch from Antonello, and rework the code to not use
  29. extension methods on Enumerable.
  30. 2007-02-04 Marek Safar <[email protected]>
  31. * System.Core.dll.sources: Added common constants.
  32. * Makefile: An assembly is 2.0 only.
  33. 2007-02-03 Atsushi Enomoto <[email protected]>
  34. * System.Core.dll.sources : added LambdaExpression.cs.
  35. 2006-11-01 Alejandro Serrano "Serras" <[email protected]>
  36. * Add IOrderedSequence, IQueryable
  37. * Change Sequence.Join and Sequence.GroupJoin to use Lookup<K, T>
  38. as stated on the Standard Query Operators paper
  39. 2006-06-05 Alejandro Serrano "Serras" <[email protected]>
  40. * Updates as of LINQ May 2006 release
  41. 2006-01-31 Alejandro Serrano "Serras" <[email protected]>
  42. * Fix bug in SkipWhile<T>, where the first element was never yielded
  43. 2006-01-30 Alejandro Serrano "Serras" <[email protected]>
  44. * Initial commit