diff mbox

Go patch committed: Update libgo to 1.1.1

Message ID 51E4F73A.7090503@redhat.com
State New
Headers show

Commit Message

Florian Weimer July 16, 2013, 7:33 a.m. UTC
On 07/16/2013 08:55 AM, Ian Lance Taylor wrote:
> I have committed a large patch to update libgo to the library that was
> part of the Go 1.1.1 release.  As usual, I'm not including the entire
> patch in this e-mail message, because it is too large.  I'm only
> including the changes to the files that are partially gccgo-specific.
> Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu.
> Committed to mainline and 4.8 branch.

I think this change at least needs a soname bump:


The size of the public Decoder struct changes, and this size has been 
compiled into client code.

Comments

Ian Lance Taylor July 16, 2013, 3:41 p.m. UTC | #1
On Tue, Jul 16, 2013 at 12:33 AM, Florian Weimer <fweimer@redhat.com> wrote:
> On 07/16/2013 08:55 AM, Ian Lance Taylor wrote:
>>
>> I have committed a large patch to update libgo to the library that was
>> part of the Go 1.1.1 release.  As usual, I'm not including the entire
>> patch in this e-mail message, because it is too large.  I'm only
>> including the changes to the files that are partially gccgo-specific.
>> Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu.
>> Committed to mainline and 4.8 branch.
>
>
> I think this change at least needs a soname bump:

Thanks.  I already bumped the soname for the change in the way that
functions are represented.  The next releases will have different
sonames.

Ian
diff mbox

Patch

Index: libgo/go/encoding/xml/xml.go
===================================================================
--- libgo/go/encoding/xml/xml.go	(revision 200973)
+++ libgo/go/encoding/xml/xml.go	(revision 200974)
@@ -169,6 +169,11 @@ 
  	// the CharsetReader's result values must be non-nil.
  	CharsetReader func(charset string, input io.Reader) (io.Reader, error)

+	// DefaultSpace sets the default name space used for unadorned tags,
+	// as if the entire XML stream were wrapped in an element containing
+	// the attribute xmlns="DefaultSpace".
+	DefaultSpace string
+
  	r         io.ByteReader
  	buf       bytes.Buffer
  	saved     *bytes.Buffer