ChangeLog 2.3 KB

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