ChangeLog 2.4 KB

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