2007-12-18 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / System.Core / ChangeLog
1 2007-12-04  Marek Safar  <marek.safar@gmail.com>
2
3         * System.Core.dll.sources: System.Linq.Expression refresh.
4         
5 2007-08-20  Marek Safar  <marek.safar@gmail.com>
6
7         * Makefile: Hardcoded 3.5 define for now.
8
9 2007-08-13  Federico Di Gregorio <fog@initd.org>
10
11         * Added Test/ directory, modified Makefile to build and execute them.
12
13         * Changed a couple of Expression methods to raise exceptions identicals to
14         MS ones.
15
16         * Added tests for AddExpression and ConstantExpression.
17
18         * Implemented somme missing stuff in BinaryExpression.
19
20         * The stuff in ExpressionUtils is very generic and does quite some
21         redundant checks: I started splitting the stuff there into more   
22         "specific" methods that should be both understandable and fast.
23
24         * Fixed the StringBuilder problem, added unique IDs to all tests,
25         used Assert.IsNull where appropriate and fixed one more Expression
26         method (AndAlso). Hope this is good enough for commit.
27
28 2007-07-12  Marek Safar  <marek.safar@gmail.com>
29
30         * System.Core.dll.sources: A few Beta 2 updates.
31
32 2007-07-11  Jb Evain  <jbevain@novell.com>
33
34         * Makefile: work on the 2.1 profile.
35
36 2007-05-11  Stephane Delcroix  <stephane@delcroix.org>
37
38         * System/DateTimeOffset.cs:
39         * System/InvalidTimeZoneException.cs:
40         * System/TimeZoneInfo.AdjustmentRules.cs:
41         * System/TimeZoneInfo.cs:
42         * System/TimeZoneInfo.TransitionTime.cs
43         * System/TimeZoneNotFoundException.cs: new TimeZoneInfo class
44
45         * System.Core.dll.sources: Added the above files
46
47         * Makefile: compile with -d:LIBC so TimeZoneInfo will look for libc
48         defined timezones
49
50 2007-03-29  Miguel de Icaza  <miguel@novell.com>
51
52         * Reapply the patch from Antonello, and rework the code to not use
53         extension methods on Enumerable. 
54
55 2007-02-04  Marek Safar  <marek.safar@gmail.com>
56
57         * System.Core.dll.sources: Added common constants.
58
59         * Makefile: An assembly is 2.0 only.
60
61 2007-02-03  Atsushi Enomoto  <atsushi@ximian.com>
62
63         * System.Core.dll.sources : added LambdaExpression.cs.
64
65 2006-11-01  Alejandro Serrano "Serras"  <trupill@yahoo.es>
66
67     * Add IOrderedSequence, IQueryable
68     * Change Sequence.Join and Sequence.GroupJoin to use Lookup<K, T>
69       as stated on the Standard Query Operators paper
70
71 2006-06-05  Alejandro Serrano "Serras"  <trupill@yahoo.es>
72
73     * Updates as of LINQ May 2006 release
74
75 2006-01-31  Alejandro Serrano "Serras"  <trupill@yahoo.es>
76
77     * Fix bug in SkipWhile<T>, where the first element was never yielded
78
79 2006-01-30  Alejandro Serrano "Serras"  <trupill@yahoo.es>
80
81     * Initial commit