(groovy) branch GROOVY_3_0_X updated: GROOVY-11343: Bump asm version to 9.7

2024-05-06 Thread goooler
This is an automated email from the ASF dual-hosted git repository.

goooler pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
 new 8df6a8b451 GROOVY-11343: Bump asm version to 9.7
8df6a8b451 is described below

commit 8df6a8b451a01f35a29c5deb9f917eba63c56952
Author: Octavia Togami 
AuthorDate: Mon May 6 08:44:06 2024 -0700

GROOVY-11343: Bump asm version to 9.7
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 34626d55d3..29c6f8d304 100644
--- a/build.gradle
+++ b/build.gradle
@@ -126,7 +126,7 @@ configurations {
 
 ext {
 antVersion = '1.10.14'
-asmVersion = '9.6'
+asmVersion = '9.7'
 antlrVersion = '2.7.7'
 antlr4Version = '4.9.0'
 bridgerVersion = '1.6.Final'



(groovy) branch GROOVY_4_0_X updated: Fix description of Observable example code.

2024-05-06 Thread paulk
This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
 new 58e44da4d7 Fix description of Observable example code.
58e44da4d7 is described below

commit 58e44da4d721305cf02b90d16992997d54c2cfe5
Author: Dean Brettle 
AuthorDate: Tue Apr 30 21:20:38 2024 -0700

Fix description of Observable example code.

The descriptions for 2 of the references were switched.
---
 src/spec/doc/core-gdk.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/spec/doc/core-gdk.adoc b/src/spec/doc/core-gdk.adoc
index 0a48c997b2..3719fa9d09 100644
--- a/src/spec/doc/core-gdk.adoc
+++ b/src/spec/doc/core-gdk.adoc
@@ -130,8 +130,8 @@ 
include::../test/gdk/ObservableTest.groovy[tags=observable_list,indent=0]
 
 <1> Declares a `PropertyChangeEventListener` that is capturing the fired events
 <2> `ObservableList.ElementEvent` and its descendant types are relevant for 
this listener
-<3> Registers the listener
-<4> Creates an `ObservableList` from the given list
+<3> Creates an `ObservableList` from the given list
+<4> Registers the listener
 <5> Triggers an `ObservableList.ElementAddedEvent` event
 
 [NOTE]