ChangeLog 2.2 KB

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