Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-01-29 21:17:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-01-29 21:17:06 +0300
commitb03e60628764d66654147bfc7a7e1a3242559888 (patch)
tree3599b29c7f180a5cb3e8cea3e875d26b8ecdeeb4 /mcs/class/System.Json
parentbf5947a0fd2b523c30833605ee69b2b041aa43f4 (diff)
Remove ChangeLog files from the repo
They weren't updated in the last 6 years and aren't helpful anymore (e.g. by causing unrelated matches during git grep searches).
Diffstat (limited to 'mcs/class/System.Json')
-rwxr-xr-xmcs/class/System.Json/Assembly/ChangeLog16
-rw-r--r--mcs/class/System.Json/ChangeLog29
-rw-r--r--mcs/class/System.Json/System.Json/ChangeLog70
3 files changed, 0 insertions, 115 deletions
diff --git a/mcs/class/System.Json/Assembly/ChangeLog b/mcs/class/System.Json/Assembly/ChangeLog
deleted file mode 100755
index 1fcfb76e98c..00000000000
--- a/mcs/class/System.Json/Assembly/ChangeLog
+++ /dev/null
@@ -1,16 +0,0 @@
-2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * AssemblyInfo.cs : use the same pub key in 2.0 (dummy), to ease
- testing locally.
-
-2008-05-07 Sebastien Pouliot <sebastien@ximian.com>
-
- * AssemblyInfo.cs: Remove AssemblyDelaySign(true) since it's
- not always needed and can be controlled from the Makefile.
- Adjust public key for System.Windows (InternalsVisibleTo)
-
-2008-04-13 Jb Evain <jbevain@novell.com>
-
- * AssemblyInfo.cs: agmono is renamed to Mono.Moonlight.
- Merged from the Moonlight 2 branch.
-
diff --git a/mcs/class/System.Json/ChangeLog b/mcs/class/System.Json/ChangeLog
deleted file mode 100644
index 3782149ab0f..00000000000
--- a/mcs/class/System.Json/ChangeLog
+++ /dev/null
@@ -1,29 +0,0 @@
-2010-04-01 Miguel de Icaza <miguel@novell.com>
-
- * JsonValue.cs: We need to use Convert.ToXXXX for numbers as we
- always end up reporting the value JsonType.Number regardless of
- the underlying storage (int, long or decimal). The parser
- picks the best storage suitable for the data, and can end up using
- "ints" for values that sometimes use longs.
-
- This causes problems when derefercing the data for example, if you
- have an int and try to get it out as a long you end up with an
- invalid cast exception.
-
-2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * System.Json.dll.sources : remove JsonReader.cs.
-
-2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * Makefile : reference System.Xml and System.ServiceModel.Web (for
- moonlight compatibility).
-
-2009-08-13 Atsushi Enomoto <atsushi@ximian.com>
-
- * Makefile : update profile check.
-
-2008-06-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * System.Json.dll.sources, Makefile : initial checkin.
-
diff --git a/mcs/class/System.Json/System.Json/ChangeLog b/mcs/class/System.Json/System.Json/ChangeLog
deleted file mode 100644
index 2c56ec1c650..00000000000
--- a/mcs/class/System.Json/System.Json/ChangeLog
+++ /dev/null
@@ -1,70 +0,0 @@
-2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : moved to Sys.SM.Web/Sys.R.S.Json.
-
-2010-03-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonValue.cs : use Sys.SM.Web.dll's JavaScriptObjectDeserializer
- for silverlight sdk / moonlight compatibility.
- * JsonReader.cs : renamed to JavaScriptReader (for disambiguation in
- Sys.SM.Web.dll). Now it is native-type based and used by the above
- deserializer.
-
-2010-02-18 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonValue.cs : fix string escaping, it was giving wrong output
- after \" and \\.
-
-2010-02-18 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : line endings after a value should not result in
- a parse error.
- * JsonObject.cs : duplicate object key "SHOULD" not be used, but
- they are not rejected. So, make it a bit sloppy.
-
-2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : oops, added previous change to wrong position.
-
-2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : It seems it can either return int, long or decimal
- depending on the value. Users cannot really predict what type of
- the primitive value can be returned and casts to specific types
- very likely fail. doh.
-
-2010-01-27 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : use decimal instead of int to parse decimal part
- of numeric value. It can parse bigger value than int now (like
- tweet id).
-
-2009-10-05 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : \uXXXX parser was totally wrong, giving wrong #.
-
-2009-09-22 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonValue.cs, JsonReader.cs, JsonPrimitive.cs :
- Handle "null" values, as string, so far (haven't tried what .NET
- actually does).
- Fix array ToString() that missed commas (while Save() worked fine -
- it has different serialization logic).
-
-2009-01-15 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : consume ',' between items in an array.
-
-2008-09-15 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonObject.cs, JsonValue.cs : SL2b2 updates.
-
-2008-08-28 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonReader.cs : a ReadChar() is missing in number parsing.
-
-2008-06-10 Atsushi Enomoto <atsushi@ximian.com>
-
- * JsonArray.cs, JsonObject.cs, JsonPrimitive.cs, JsonReader.cs,
- JsonType.cs, JsonValue.cs, MergedEnumerator.cs : initial checkin.
-