[Mono-list] Mono 0.20 has been released

Armand Du Plessis ArmandDP@cointel.co.za
Mon, 24 Feb 2003 09:38:32 +0200


This is a multi-part message in MIME format.

------=_NextPart_000_030B_01C2DBE8.A116B230
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Congrats!=20

This is a great project and it's amazing the amount of work and
dedication goes into every release!

Keep up the good work and congrats again!

Armand

-----Original Message-----
From: Miguel de Icaza [mailto:miguel@ximian.com]=20
Sent: Monday, February 24, 2003 5:03 AM
To: mono-list@ximian.com; Mono Announce
Subject: [Mono-list] Mono 0.20 has been released


Hello everyone!

    The Mono Team introduces the best Mono release so far we have done.
Thanks to everyone who contributed fixes, code, ideas, and bug reports.


    Mono 0.20 has been released, it is available at the usual location:

	http://www.go-mono.com/download.html

    This is a truly heroic release of Mono.  Major architectural chunks
that were missing, or were miss-implemented have been fixed in this
release, and we are very proud of it.  Please see the list of features,
because there is no short way of introducing just how good this release
is.  A big thanks goes to Piers for setting up a Tinderbox that monitors
problems with the Mono CVS repository.

    We released packages for SuSE 8.0, Mandrake 8.2, and various Red Hat
releases.  It will be made available on the Red Carpet Mono Channel
tomorrow Monday.

   Source code for Mono, MCS, the Mono Debugger, XSP is available as
well from that web page.  The sources are:

     MCS package (Class Libraries, C# and VB.NET compiler and managed
tools):

	http://www.go-mono.com/archive/mcs-0.20.tar.gz

     Mono package (Runtime engine, JIT compiler):

	http://www.go-mono.com/archive/mono-0.20.tar.gz

     XSP package (XSP test web server for ASP.NET webforms):

	http://www.go-mono.com/archive/xsp-0.3.tar.gz

    This release is brought to you by: Alvaro del Castillo, Alan Tam,
Alp Toker, Alejandro S=E1nchez, Alexandre Pigolkin, Atsushi Enomoto, =
Brian
Ritchie, Christopher Bockner, Daniel Lopez, Daniel Morgan, Dennis Hayes,
Dick Porter, Dietmar Maurer, Duncan Mak, Gaurav Vaish, Gonzalo Paniagua,
Jackson Harper, Jaime Anguiano, Jeff Stedfast, Johannes Roith, John
Sohn, Jonathan Pryor, "Lee Mallabone, "Lluis Sanchez, "Marco Ridoni,
Mark Crichton, Martin Baulig, Martin Willemoes Hansen, Miguel de Icaza,
Mike Kestner, Nick Drochak, Paolo Molaro, Patrik Torstensson, Pedro
Martinez, Per Arneng, Peter Williams, Petr Danecek, Piers Haken, Radek
Doulik, Rafael Teixeira, Rodrigo Moya, Sebastien Pouliot, Tim Coleman,
Ville Palo, and Zoltan Varga.

   They commited 1810 changes to CVS patches in the past 33 days.

* New in this release

      * Zoltan and IKVM

	Zoltan's patches to run Jeroen's IKVM (the Java VM that
	translates JVM bytecodes into .NET bytecodes) are in. =20

      * Remoting.

	The remoting team's patches that were held off on the previous
	release are here.  Lluis and Patrik have done a fantastic job
	in getting remoting to work.  Many low-level runtime engine
	changes, and plenty of work on the class-library stuff.
=09
	Lluis has posted a couple of sample applications to the
	mailing list, you can try those out.

	The new release includes a working BinaryFormatter and
	BinaryFormatterSink.  It means that together with TcpChannel
	it is possible to make remote calls with any type of
	parameters and return values, including value types,
	MarshalByRefObject types (that are properly
	marshalled/unmarshalled), delegates, enums, etc.

	RemotingConfiguration is partially implemented. It cannot read
	from config files, but manual configuration using the api is
	fully working.

	Implemented full support for client activated types and for
	well known objects (both singleton and single call).

	Lease manager fully working (it manages the lifetime of server
	objects).

	Implemented interception of the new operator, so it is
	possible to create a remote object using "new", if the type is
	properly registered in RemotingConfiguration.

	In Lluis' words: `Basically, 0.20 will have almost all needed
	for a distributed application with Remoting'

      * New threading semantics, IO-layer

	Dick Porter in a couple of weeks has heroically redone much of
	the threading support to match the .NET behavior (details are
	on the .NET threading book as posted on the Mono site).

	He also did a lot of bug fixes in the IO/threading space.  The
	threading implementation now contains a new and faster Monitor
	implementation, as well as a correct Pulse()/Wait()
	implementation.=20

	GC thread finalization has been re-enabled.  This means that
	finalizers will be ran on a separate thread, as done in the
	Microsoft.NET Framework.  This might expose some bugs on
	existing finalizer code.

      * Moved to NUnit2

	Nick and Gonzalo helped us move to the new NUnit2 platform for=20
	all of our tests.   A big applause goes to them.

     * Cross Appdomain invocations work now.

        ASP.NET and NUnit2 both used cross appdomain invocations, we
        have fixed a number of problems, and they are now functional.

	The AppDomain fixes and the Remoting fixes have allowed us to
	remove a number of hacks in the ASP.NET implementation that
        were previously there.

	Implemented CrossAppDomainChannel, for calls between domains.

     * C# Compiler and Debugging.

	When generating debugging information in the compiler (with
        -debug, -g or -debug+) the compiler will embed the debugging
        information into the resulting executable instead of
        generating a separate file.  Very nice.

	Generating debugging information has also improved vastly
        performance-wise, and now it is possible to always use
        debugging builds for software development.

	A number of bugs were fixed on the compiler as well and
	by using the Mono profiler we have reduced the memory
	consumption and accelerated the compiler.

	Thanks to Jackson, Martin, Paolo and for helping here.

      * VB.NET Compiler.

	Plenty of new features are included in the compiler in our
        path to conformance.  See <FIXME:get-url-for-posting> for
        details on the status of the compiler, and the pieces missing.

      * ILasm and Mono.PEToolkit.

	Work on the IL assembler has resumed, but it is not yet ready
        for production use.  The Mono IL Assembler uses the
        Mono.PEToolkit library done by Sergey and Jackson to
        manipulate CIL image files.

      * Cryptographic work.

	Sebastien has provided a cert2spc and secutil tools for
	certificate management.  This is the first release that ships
	an assembly for System.Security

	Also a new internal assembly used only on Windows allows Mono
	users to use the unmanaged crypto providers.

      * System.XML

	Atsushi has continued to improve the work on our XML
        implementation: fixing bugs and more closely matching the
        Microsoft implementation.

      * More PowerPC/Alpha support.

	Taylor Christopher has contributed more code generation macros
	for PPC and Laramie Leavitt for Alpha.

      * System.XML.Xsl

	Gonzalo continued the implementation of our XSLT transformation
        API (custom .NET functions are still missing though).  It no
        longer uses temporary files to apply transformations.  Thanks
        to an idea from Zdravko Tashev.  Xslt Web controls work as
        part of this fix.

      * ASP.NET

	Gonzalo has cleaned up a lot the code base, and now our test
	server supports a --root and --virtual command line options
	for better control.=20

	Also, now we generate a much nicer error page on errors.  We
	are looking for volunteers to improve the default look of this
	page.

	Authentication is now supported

      * Mobile Controls.

	Gaurav Vaish continues on his quest to complete the
	implementation of the Mobile controls.  These controls are
	required to run a stock IBuySpy application.

      * Class Libraries:

	New Mono.Posix class library that contains classes for working
	on a Posix systems.  Things like Unix domain sockets are here.

      * System.Windows.Forms

	Alexandre Pigolkine continues to contribute more code to our
	Windows.Forms implementation.  Currently it only runs on
	Windows (or in Linux without GC enabled, due to the
	pthread/Wine threading library mismatch.  This is being
	actively addressed as part of the Wine work due to the
	movement to the new thread implementation available in RH 8.1).

      * Database providers

	Christopher Bockner has updated his DB2 database provider (now
	with prepared statement functionality) and Tim Coleman has
	continued work on the Oracle database provider (welcome back
	Tim!)

      * Database code.

	Dan Morgan continues to develop core components in System.Data
	(and now we welcome Alan Tam to the System.Data core hackers)

	The SQL# tool now supports MySQLNet, Npgsql, DB2Client, and
	Oracle clients.

      * Runtime

	mono --profile now performs memory allocation profiling too.

      * Runtime fixes.

	We now support multi-module with external file reference
	assemblies. =20

	The above in English means that we can now run Eiffel.NET code
	in Mono.

      * Monograph:

	More statistics supported now.

      * System.Web.Mail

	Per has contributed the code for this namespace.

* Bugs=20

	Plenty of bugs were closed. =20

_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

------=_NextPart_000_030B_01C2DBE8.A116B230
Content-Type: application/x-pkcs7-signature;
	name="smime.p7s"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
	filename="smime.p7s"

MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIFxjCCAoYw
ggHvoAMCAQICAwlRizANBgkqhkiG9w0BAQQFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl
c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT
FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw
MC44LjMwMB4XDTAzMDIxODA3MzIzNFoXDTA0MDIxODA3MzIzNFowSDEfMB0GA1UEAxMWVGhhd3Rl
IEZyZWVtYWlsIE1lbWJlcjElMCMGCSqGSIb3DQEJARYWYXJtYW5kZHBAY29pbnRlbC5jby56YTCB
nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAtjiapSyD2kacHSy5ZGmG+AD8ZXsKJ7kFHM0HQIa1
WOCFlt1a0/b9LrsTiYKiUOQDzcTRNw2B7PTZ3hrgphp/aW/0F/zsESa7mF/ezAtP3cDKp/u97NDV
wvPZbOjXqhH6ZsNOy6Ktt4f3Ehgdo3ASmyljQSYCm2+aDRT3/BkKGsMCAwEAAaMzMDEwIQYDVR0R
BBowGIEWYXJtYW5kZHBAY29pbnRlbC5jby56YTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBAUA
A4GBAMswB0iH8w+xhp5nHaSaBsVMPsPJxlL107Ix60/cW+DXQQkcgnOg6YzPayHGn3DhKPqmYXSd
sXmXFXMGZNid49UH0XmzxvLEmymTsn+J92sU36bDk4APjz89petO5UQMxRgOvYtYeNJaHLZmjwu+
3sLOWSGcZ/L5YfSM8OZ8bqAXMIIDODCCAqGgAwIBAgIQZkVyt8x09c9jdkWE0C6RATANBgkqhkiG
9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJ
Q2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNh
dGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWls
IENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgz
MDAwMDAwMFoXDTA0MDgyNzIzNTk1OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJu
IENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0
aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z
MDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmK
YzUqbXA8+tyu9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC
9tewkd4c6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYD
VR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C
AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBADGxS0dd+QFx5fVTbF151j2YwCYTYoEi
pxL4IpXoG0m3J3sEObr85vIk65H6vewNKjj3UFWobPcNrUwbvAP0teuiR59sogxYjTFCCRFssBpp
0SsSskBdavl50OouJd2K5PzbDR+dAvNa28o89kTqJmmHf0iezqWf54TYyWJirQXGMYIDujCCA7YC
AQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh
cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEo
MCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMAIDCVGLMAkGBSsOAwIaBQCg
ggJ1MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTAzMDIyNDA3Mzkz
MFowIwYJKoZIhvcNAQkEMRYEFDvWlZuoUitdDRbkW5sdtwpbqlqDME8GCyqGSIb3DQEJEAIBMUAw
PgQdAAAAABAAAADaF7u4qUfXEbHAAAKldRbPAQAAAACAAQAwGjAYgRZBcm1hbmREUEBjb2ludGVs
LmNvLnphMGcGCSqGSIb3DQEJDzFaMFgwCgYIKoZIhvcNAwcwBwYFKw4DAhowDgYIKoZIhvcNAwIC
AgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEoMAoGCCqGSIb3DQIFMIGr
BgkrBgEEAYI3EAQxgZ0wgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx
EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0
ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMAIDCVGL
MIGtBgsqhkiG9w0BCRACCzGBnaCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4g
Q2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRp
ZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMw
AgMJUYswDQYJKoZIhvcNAQEBBQAEgYA0Ld1Xs/YCyrxvW1N182apPFWn7wbmaE/b79ktWCQdn6lS
HWxaQx/xJVXT1qH3r2zzecHvIjFdKCRpA9QhbZSfKrK1XDVzZ1NdwVkEn9oFb87ps079LtJeYeER
jIOpYXItlaYRYl2miKb4hjnPuK6rvpXPyKsBQVOdR2Wt7tc4dQAAAAAAAA==

------=_NextPart_000_030B_01C2DBE8.A116B230--