ChangeLog 2.5 KB

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