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