[royale-asjs] branch feature/modal created (now 1633099)

2018-11-13 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a change to branch feature/modal
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


  at 1633099  Added Modal beads with example

This branch includes the following new commits:

 new 1633099  Added Modal beads with example

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[royale-asjs] branch develop updated: Default data type for list is an array

2018-11-13 Thread yishayw
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
 new f80bd8e  Default data type for list is an array
f80bd8e is described below

commit f80bd8ed86ac28f8895059d685646c48724df1cd
Author: DESKTOP-RH4S838\Yishay 
AuthorDate: Tue Nov 13 11:12:25 2018 +0200

Default data type for list is an array
---
 .../DragAndDropExample/src/main/royale/models/ProductsModel.as | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 
a/examples/royale/DragAndDropExample/src/main/royale/models/ProductsModel.as 
b/examples/royale/DragAndDropExample/src/main/royale/models/ProductsModel.as
index 14894e3..f580005 100644
--- a/examples/royale/DragAndDropExample/src/main/royale/models/ProductsModel.as
+++ b/examples/royale/DragAndDropExample/src/main/royale/models/ProductsModel.as
@@ -18,7 +18,6 @@
 

 package models
 {
-   import org.apache.royale.collections.ArrayList;
import products.Product;
 
public class ProductsModel
@@ -26,15 +25,15 @@ package models
/**
 * Used for the DataGrid.
 */
-   private var _productList:ArrayList = new ArrayList([
+   private var _productList:Array = new Array(
 new Product("ps100","Widgets",44,200,"assets/smallbluerect.jpg"),
 new Product("tx200","Thingys",5,285,"assets/smallgreenrect.jpg"),
 new 
Product("rz300","Sprockets",80,105,"assets/smallyellowrect.jpg"),
 new Product("dh440","Doohickies",10,340,"assets/smallredrect.jpg"),
 new Product("ps220","Weejets",35,190,"assets/smallorangerect.jpg")
-   ]);
+   );
 
-   public function get productList():ArrayList
+   public function get productList():Array
{
return _productList;
}



[royale-asjs] branch feature/modal updated: Flash not perfect, but at least it runs.

2018-11-13 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch feature/modal
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/modal by this push:
 new 4a36cf3  Flash not perfect, but at least it runs.
4a36cf3 is described below

commit 4a36cf33d6f0c033d46b266ad3e02f900d0a735f
Author: Harbs 
AuthorDate: Tue Nov 13 11:45:03 2018 +0200

Flash not perfect, but at least it runs.
---
 .../Basic/src/main/royale/org/apache/royale/core/UIBase.as | 2 +-
 .../royale/org/apache/royale/html/beads/plugin/ModalDisplay.as | 7 ++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
index 5ed85ba..ba2488d 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
@@ -34,8 +34,8 @@ package org.apache.royale.core
 }
 
 import org.apache.royale.core.IId;
+import org.apache.royale.core.IStyleObject;
 import org.apache.royale.events.Event;
-import org.apache.royale.events.FocusEvent;
 import org.apache.royale.events.IEventDispatcher;
 import org.apache.royale.events.ValueChangeEvent;
 import org.apache.royale.utils.loadBeadFromValuesManager;
diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/plugin/ModalDisplay.as
 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/plugin/ModalDisplay.as
index 2ce4db7..ddbfc11 100644
--- 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/plugin/ModalDisplay.as
+++ 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/plugin/ModalDisplay.as
@@ -124,7 +124,12 @@ package org.apache.royale.html.beads.plugin
   parent.popUpParent.addElement(host);
   COMPILE::SWF
   {
-var parentComp:IUIBase = parent as IUIBase;
+var parentComp:Object = parent;
+if(!isNaN(_maxWidth))
+  host.width = _maxWidth;
+if(host.width > parentComp.width)
+  host.width = parentComp.width;
+
 host.x = (parentComp.width - host.width) / 2;
 switch(_position){
   case "top":



[royale-asjs] branch develop updated (f80bd8e -> 6f73c54)

2018-11-13 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


from f80bd8e  Default data type for list is an array
 new fb00ef7  Revert "Organize and clean imports in Core lib and avoid 
warnings in IDEs due to missing COMPILE::SWF wrapper"
 new 6f73c54  Revert "those was missed from latest commit"

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/royale/org/apache/royale/core/UIBase.as | 16 
 .../src/main/royale/org/apache/royale/core/CSSShape.as   |  5 ++---
 .../src/main/royale/org/apache/royale/core/CSSSprite.as  |  4 +---
 .../royale/org/apache/royale/core/HTMLElementWrapper.as  | 13 ++---
 .../main/royale/org/apache/royale/core/IBorderModel.as   |  4 +---
 .../src/main/royale/org/apache/royale/core/StageProxy.as |  3 +--
 .../org/apache/royale/core/StyleableCSSTextField.as  |  3 +--
 .../main/royale/org/apache/royale/core/UIButtonBase.as   |  3 ---
 .../org/apache/royale/core/UIHTMLElementWrapper.as   |  9 +++--
 .../royale/org/apache/royale/core/WrappedMovieClip.as|  7 ---
 .../main/royale/org/apache/royale/core/WrappedShape.as   |  4 ++--
 .../main/royale/org/apache/royale/core/WrappedSprite.as  |  4 ++--
 .../royale/org/apache/royale/core/WrappedTextField.as|  4 ++--
 .../apache/royale/events/utils/MouseEventConverter.as|  2 +-
 .../royale/org/apache/royale/utils/CSSBorderUtils.as |  3 +--
 .../main/royale/org/apache/royale/utils/PNGEncoder.as|  8 
 .../royale/org/apache/royale/utils/SolidBorderUtil.as|  5 ++---
 .../royale/org/apache/royale/utils/dbg/DOMPathUtil.as|  3 +--
 18 files changed, 46 insertions(+), 54 deletions(-)



[royale-asjs] branch develop updated: Cleaned up a bit

2018-11-13 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
 new 55a4f0a  Cleaned up a bit
55a4f0a is described below

commit 55a4f0ad70d2ac20a4312450f0c3fe92f9bd3c58
Author: Harbs 
AuthorDate: Tue Nov 13 10:59:34 2018 +0200

Cleaned up a bit
---
 .../main/royale/org/apache/royale/html/Alert.as| 61 +++---
 1 file changed, 30 insertions(+), 31 deletions(-)

diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/Alert.as 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/Alert.as
index c377673..1ba47a4 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/Alert.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/Alert.as
@@ -21,7 +21,7 @@ package org.apache.royale.html
import org.apache.royale.core.IAlertModel;
import org.apache.royale.core.IPopUp;
 
-[Event(name="close", type="org.apache.royale.events.CloseEvent")]
+  [Event(name="close", type="org.apache.royale.events.CloseEvent")]
/**
 *  The Alert class is a component that displays a message and one or 
more buttons
 *  in a view that pops up over all other controls and views. The Alert 
component
@@ -93,28 +93,27 @@ package org.apache.royale.html
public function Alert()
{
super();
-   
typeNames = "Alert";
}
 
- // note: only passing parent to this function as I don't see a way to 
identify
- // the 'application' or top level view without supplying a place to 
start to
- // look for it.
- /**
-  *  This static method is a convenience function to quickly create 
and display an Alert. The
-  *  text and parent paramters are required, the others will default.
-  *
-  *  @param String message The message content of the Alert.
-  *  @param Object parent The object that hosts the pop-up.
-  *  @param String title An optional title for the Alert.
-  *  @param uint flags Identifies which buttons to display in the 
alert.
-  *
-  *  @langversion 3.0
-  *  @playerversion Flash 10.2
-  *  @playerversion AIR 2.6
-  *  @productversion Royale 0.0
-  */
-static public function show( message:String, parent:Object, 
title:String="", flags:uint=Alert.OK ) : Alert
+   // note: only passing parent to this function as I don't see a 
way to identify
+   // the 'application' or top level view without supplying a 
place to start to
+   // look for it.
+   /**
+   *  This static method is a convenience function to quickly 
create and display an Alert. The
+   *  text and parent paramters are required, the others will 
default.
+   *
+   *  @param String message The message content of the Alert.
+   *  @param Object parent The object that hosts the pop-up.
+   *  @param String title An optional title for the Alert.
+   *  @param uint flags Identifies which buttons to display in the 
alert.
+   *
+   *  @langversion 3.0
+   *  @playerversion Flash 10.2
+   *  @playerversion AIR 2.6
+   *  @productversion Royale 0.0
+   */
+static public function show( message:String, parent:Object, 
title:String="", flags:uint=Alert.OK ) : Alert
{
var alert:Alert = new Alert();
alert.message = message;
@@ -123,14 +122,14 @@ package org.apache.royale.html

alert.show(parent);
 
-COMPILE::JS
-{
-alert.positioner.style.margin = 'auto';
-alert.positioner.style.left = "50%";
-alert.positioner.style.top = "50%";
-alert.positioner.style.width = "200px";
-}
-return alert;
+   COMPILE::JS
+   {
+   alert.positioner.style.margin = 'auto';
+   alert.positioner.style.left = "50%";
+   alert.positioner.style.top = "50%";
+   alert.positioner.style.width = "200px";
+   }
+   return alert;
}

/**
@@ -188,9 +187,9 @@ package org.apache.royale.html
 *  The buttons to display on the Alert as bit-mask values.
 *
 *  Alert.YES
- *  Alert.NO
- *  Alert.OK
- *  Alert.CANCEL
+  

[royale-asjs] branch develop updated: Assign topLevelApplication

2018-11-13 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
 new 74f3d81  Assign topLevelApplication
74f3d81 is described below

commit 74f3d815061e067b65bc490e0637416f08125293
Author: Harbs 
AuthorDate: Tue Nov 13 15:35:29 2018 +0200

Assign topLevelApplication
---
 .../SparkRoyale/src/main/royale/spark/components/Application.as   | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/Application.as
 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/Application.as
index 7b46169..e070d6c 100644
--- 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/Application.as
+++ 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/Application.as
@@ -40,7 +40,6 @@ import flash.utils.Dictionary;
 import flash.utils.setInterval; */
 /* 
 import mx.core.EventPriority;
-import mx.core.FlexGlobals;
 import mx.core.IInvalidating;
 import mx.core.InteractionMode;
 import mx.core.Singleton;
@@ -63,6 +62,7 @@ COMPILE::SWF {
 }
 
 import mx.core.mx_internal;
+import mx.core.FlexGlobals;
 import mx.managers.ISystemManager;
 
 import org.apache.royale.binding.ApplicationDataBinding;
@@ -76,8 +76,8 @@ import org.apache.royale.core.IStatesImpl;
 import org.apache.royale.core.IStrand;
 import org.apache.royale.core.IValuesImpl;
 import org.apache.royale.core.ValuesManager;
-import org.apache.royale.events.IEventDispatcher;
-
+import org.apache.royale.events.IEventDispatcher;
+
 use namespace mx_internal; 
 
 //--
@@ -303,9 +303,9 @@ public class Application extends SkinnableContainer 
implements IStrand, IParent,
 Singleton.getInstance("mx.managers::ILayoutManager"));
 UIComponentGlobals.layoutManager.usePhasedInstantiation = true;
 
+   */
 if (!FlexGlobals.topLevelApplication)
 FlexGlobals.topLevelApplication = this;
-   */
 super();
 
 /* showInAutomationHierarchy = true;



[royale-asjs] 02/03: update approval script with sha suffixes and new binaries

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 0313005185d1e59c7b0a913d99870aa74c5972cc
Author: Alex Harui 
AuthorDate: Tue Nov 13 14:13:44 2018 -0800

update approval script with sha suffixes and new binaries
---
 ApproveRoyale.xml | 50 --
 1 file changed, 32 insertions(+), 18 deletions(-)

diff --git a/ApproveRoyale.xml b/ApproveRoyale.xml
index 8945c26..46100fa 100644
--- a/ApproveRoyale.xml
+++ b/ApproveRoyale.xml
@@ -239,17 +239,17 @@
 
 
-
+
 
-
+
 
+-->
 
 
 
@@ -263,8 +263,8 @@
 dest="${basedir}/${doc.package.url.name}.zip.asc" />-->
 
 
-
-   
+   

 
@@ -273,7 +273,7 @@

 
 
-
 
 
@@ -283,7 +283,7 @@
 
 
 

[royale-asjs] branch release/0.9.4 updated (971d327 -> c2f1261)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


from 971d327  [maven-release-plugin] prepare for next development iteration
 new 3f79a14  remove this file for now
 new 0313005  update approval script with sha suffixes and new binaries
 new c2f1261  update notice files

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ApproveRoyale.xml  | 50 +-
 LICENSE| 22 +++-
 NOTICE | 13 
 RELEASE_NOTES.md   |  9 +
 releasemgr/NOTICE  | 12 +++
 releasemgr/RELEASE_NOTES   |  8 
 royale-asjs.code-workspace | 19 --
 7 files changed, 95 insertions(+), 38 deletions(-)
 delete mode 100644 royale-asjs.code-workspace



[royale-asjs] 01/03: remove this file for now

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 3f79a145bf936606e06537b90792a8004620ae43
Author: Alex Harui 
AuthorDate: Tue Nov 13 14:13:00 2018 -0800

remove this file for now
---
 royale-asjs.code-workspace | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/royale-asjs.code-workspace b/royale-asjs.code-workspace
deleted file mode 100644
index 861b5be..000
--- a/royale-asjs.code-workspace
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-   "folders": [
-   {
-   "path": "frameworks/projects/Jewel"
-   },
-   {
-   "path": "frameworks/themes/JewelTheme"
-   },
-   {
-   "path": "examples/royale/JewelExample"
-   },
-   {
-   "path": "frameworks/projects/Core"
-   },
-   {
-   "path": "frameworks/projects/Basic"
-   }
-   ]
-}
\ No newline at end of file



[royale-asjs] branch release/0.9.4 updated: JewelTheme was not built in js-only packaging

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 92e5af4  JewelTheme was not built in js-only packaging
92e5af4 is described below

commit 92e5af47d4e4064e50c4cd952e6130e7dffb986d
Author: Alex Harui 
AuthorDate: Tue Nov 13 16:18:43 2018 -0800

JewelTheme was not built in js-only packaging
---
 .../themes/JewelThemeJS}/build.xml | 261 ++--
 frameworks/themes/JewelTheme/build.xml | 267 +++--
 2 files changed, 262 insertions(+), 266 deletions(-)

diff --git a/frameworks/themes/JewelTheme/build.xml 
b/frameworks/js/themes/JewelThemeJS/build.xml
similarity index 50%
copy from frameworks/themes/JewelTheme/build.xml
copy to frameworks/js/themes/JewelThemeJS/build.xml
index d2e5467..add34f8 100644
--- a/frameworks/themes/JewelTheme/build.xml
+++ b/frameworks/js/themes/JewelThemeJS/build.xml
@@ -1,133 +1,128 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+target.name.nojs=${ant.project.name}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frameworks/themes/JewelTheme/build.xml 
b/frameworks/themes/JewelTheme/build.xml
index d2e5467..ac90973 100644
--- a/frameworks/themes/JewelTheme/build.xml
+++ b/frameworks/themes/JewelTheme/build.xml
@@ -1,133 +1,134 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+AIR_HOME is ${env.AIR_HOME}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+



[royale-asjs] branch release/0.9.4 updated: this folder is empty so isn't always in the package

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 55d17bc  this folder is empty so isn't always in the package
55d17bc is described below

commit 55d17bc12024ab067d26c1ee2e8d1dfbc8039f87
Author: Alex Harui 
AuthorDate: Tue Nov 13 19:02:51 2018 -0800

this folder is empty so isn't always in the package
---
 examples/royale/RoyaleWebsite/build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/royale/RoyaleWebsite/build.xml 
b/examples/royale/RoyaleWebsite/build.xml
index d151a44..346954f 100644
--- a/examples/royale/RoyaleWebsite/build.xml
+++ b/examples/royale/RoyaleWebsite/build.xml
@@ -32,13 +32,13 @@
 
 
 
-
+
 
 
 
 
 
-
+
 
 
 



[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 8b9c8fd  [maven-release-plugin] prepare for next development iteration
8b9c8fd is described below

commit 8b9c8fd6194d221b702f7bcaa21057e47498cc33
Author: Alex Harui 
AuthorDate: Tue Nov 13 19:50:32 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 197a455..744a47f 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
 
 
 compiler-common
-0.9.5
+0.9.6-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index ccee7b4..bb3df97 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   compiler-externc
-  0.9.5
+  0.9.6-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.6-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index df27f71..883ec78 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   compiler-jx
-  0.9.5
+  0.9.6-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.6-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.6-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 241c9db..1548a33 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.5
+  0.9.6-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 4219461..49e0b71 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   compiler
-  0.9.5
+  0.9.6-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.6-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index cd192fd..0f6b0c2 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   debugger
-  0.9.5
+  0.9.6-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5
+  0.9.6-SNAPSHOT
 
 
   commons-lang
diff --git 

[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 updated (88ed73c -> 995a728)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was modified! ***

from 88ed73c  (commit)
  to 995a728  (tag)
 tagging 88ed73c006650e5bbd8f9abe1dd178cd3d9a533d (commit)
 replaces org.apache.royale.compiler-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 19:50:22 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.compiler-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-typedefs] annotated tag org.apache.royale.typedefs-0.9.4-rc2 deleted (was 91aa4e3)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.typedefs-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git.


*** WARNING: tag org.apache.royale.typedefs-0.9.4-rc2 was deleted! ***

   tag was  91aa4e3

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 deleted (was 995a728)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was deleted! ***

   tag was  995a728

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 updated (6429d0b -> 25b2f57)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was modified! ***

from 6429d0b  (commit)
  to 25b2f57  (tag)
 tagging 6429d0b1b7d7258d7b98585cbf0edc7c84a80217 (commit)
 replaces org.apache.royale.compiler-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 22:01:19 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.compiler-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 2b584ba  [maven-release-plugin] prepare for next development iteration
2b584ba is described below

commit 2b584ba60353bf9bd93eea6336f19eb28455d2f0
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:01:30 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 2370a7b..95988eb 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
 
 
 compiler-common
-0.9.4
+0.9.5-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 249ed9d..9e18764 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 628aedc..53efb62 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-jx
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 0305699..3cd8f01 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 6182cd6..c268d8b 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 798627e..dc0820d 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   debugger
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   commons-lang
diff --git 

[royale-asjs] branch release/0.9.4 updated (55d17bc -> 2791dd8)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


from 55d17bc  this folder is empty so isn't always in the package
 new a9a6e8f  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new c417d4a  Revert "[maven-release-plugin] prepare release 
org.apache.royale.framework-0.9.4-rc1"
 new 2791dd8  Revert "update other poms to current version"

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 archetypes/pom.xml |   6 +-
 .../royale-simple-application-archetype/pom.xml|   4 +-
 .../pom.xml|   4 +-
 .../pom.xml|   4 +-
 archetypes/royale-simple-library-archetype/pom.xml |   4 +-
 archetypes/royale-simple-typedef-archetype/pom.xml |   4 +-
 distribution/jars/compc/pom.xml|   4 +-
 distribution/jars/compiler-asc/pom.xml |   4 +-
 distribution/jars/compiler-compc/pom.xml   |   4 +-
 distribution/jars/compiler-mxmlc/pom.xml   |   4 +-
 distribution/jars/compiler-optimizer/pom.xml   |   4 +-
 distribution/jars/compiler-swfdump/pom.xml |   4 +-
 distribution/jars/mxmlc/pom.xml|   4 +-
 distribution/pom.xml   | 120 ++---
 examples/amf/SampleAmfWebApp/pom.xml   |   6 +-
 examples/amf/pom.xml   |   4 +-
 examples/blog/BE0001_Hello_World/pom.xml   |  10 +-
 .../blog/BE0002_Using_Jewel_Alert_Control/pom.xml  |  14 +--
 .../blog/BE0003_Using_Jewel_Slider_Control/pom.xml |  14 +--
 .../BE0004_Adding_an_item_to_a_Jewel_List/pom.xml  |  14 +--
 .../pom.xml|  14 +--
 .../pom.xml|  10 +-
 .../pom.xml|  14 +--
 .../pom.xml|  14 +--
 .../pom.xml|  18 ++--
 .../pom.xml|  10 +-
 .../pom.xml|  14 +--
 examples/blog/pom.xml  |  30 +++---
 examples/examples-integrationtests/pom.xml |  52 -
 examples/examples-tests/pom.xml|   4 +-
 examples/express/DataBindingExample/pom.xml|   8 +-
 examples/express/DataGridExample/pom.xml   |   4 +-
 examples/express/GitHubCommitLogViewer/pom.xml |   8 +-
 examples/express/pom.xml   |  18 ++--
 examples/mxroyale/ControlsExample/pom.xml  |   6 +-
 examples/mxroyale/HelloWorld/pom.xml   |   6 +-
 examples/mxroyale/RemoteObjectAMFTest/pom.xml  |  16 +--
 examples/mxroyale/SparkHelloWorld/pom.xml  |   6 +-
 examples/mxroyale/pom.xml  |  38 +++
 examples/native/ButtonExample/pom.xml  |   4 +-
 examples/native/USStatesMap/pom.xml|   6 +-
 examples/native/pom.xml|   4 +-
 examples/node/HelloWorld/pom.xml   |   4 +-
 examples/node/pom.xml  |   4 +-
 examples/pom.xml   |   6 +-
 examples/royale/ASDoc/pom.xml  |  14 +--
 examples/royale/AccordionExample/pom.xml   |  10 +-
 examples/royale/AlertExample/pom.xml   |  12 +--
 examples/royale/ChartExample/pom.xml   |  10 +-
 examples/royale/CordovaCameraExample/pom.xml   |  10 +-
 examples/royale/CreateJSExample/pom.xml|  10 +-
 examples/royale/DataBindingExample/pom.xml |  14 +--
 .../DataBindingExampleWithFlexLayout/pom.xml   |  14 +--
 examples/royale/DataBindingExample_Flat/pom.xml|  14 +--
 examples/royale/DataBindingExample_as/pom.xml  |  14 +--
 examples/royale/DataGridExample/pom.xml|  10 +-
 examples/royale/DateControlsExample/pom.xml|  10 +-
 examples/royale/DebuggingExample/pom.xml   |  14 +--
 examples/royale/DesktopMap/pom.xml |  10 +-
 examples/royale/DividedContainerExample/pom.xml|  10 +-
 examples/royale/DragAndDropExample/pom.xml |  10 +-
 examples/royale/Flex2Royale/pom.xml|  14 +--
 examples/royale/HTMLElements/pom.xml   |  10 +-
 examples/royale/HelloWorld/pom.xml |  10 +-
 examples/royale/JSON2ASVO/pom.xml  |  18 ++--
 examples/royale/JewelExample/pom.xml   |  26 ++---
 examples/royale/ListExample/pom.xml|  14 +--
 examples/royale/MDLDynamicTableExample/pom.xml |   6 +-
 

[royale-asjs] 03/03: Revert "update other poms to current version"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 2791dd812779804ce6703480dd4100c1d6c8172a
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:44:08 2018 -0800

Revert "update other poms to current version"

This reverts commit 5fe221f0323337b5ae49567832b830b8dfa3128c.
---
 archetypes/pom.xml  | 2 +-
 examples/pom.xml| 2 +-
 manualtests/pom.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/archetypes/pom.xml b/archetypes/pom.xml
index 7cc6bfc..e28783c 100644
--- a/archetypes/pom.xml
+++ b/archetypes/pom.xml
@@ -34,7 +34,7 @@
   Maven archetypes for creating royale maven 
projects
 
   
-0.9.4
+0.9.4-SNAPSHOT
   
   
   
diff --git a/examples/pom.xml b/examples/pom.xml
index 8aee197..93264fb 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -38,7 +38,7 @@
 
${basedir}/target/javascript/bin/js-debug
 
 
${basedir}/target/javascript/bin/js-release
-0.9.4
+0.9.4-SNAPSHOT
   
 
   
diff --git a/manualtests/pom.xml b/manualtests/pom.xml
index 1cb84ea..a60a24d 100644
--- a/manualtests/pom.xml
+++ b/manualtests/pom.xml
@@ -33,7 +33,7 @@
   
   
 
${basedir}/target/javascript/bin/js-debug
-0.9.4
+0.9.4-SNAPSHOT
   
   Apache Royale: ManualTests
 



[royale-compiler] 03/04: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit 2ddae0818ab11766bd94377227a6eb461256711e
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:55:59 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit fc3e8856d9484323228ef9b8adf2784c269be7e3.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 95988eb..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.5-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 9e18764..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 53efb62..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 3cd8f01..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index c268d8b..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index dc0820d..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index 872d751..dd20460 100644
--- 

[royale-compiler] 04/04: Revert "[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc1"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit 9869b6429f7ba18531ba615d7b8cccb6ed9190b1
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:56:11 2018 -0800

Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc1"

This reverts commit 85c23038a524b795b92ebb9e26a8eacbe45597b0.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 2370a7b..d8dc6a6 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
 
 
 compiler-common
-0.9.4
+0.9.4-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 249ed9d..0716cd1 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 628aedc..be99832 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-jx
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 0305699..280f8a8 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 6182cd6..7bc504c 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 798627e..0efa2b6 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   debugger
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index dd20460..83b041e 100644
--- 

[royale-compiler] 02/04: Revert "[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit fd1c510acd0dc99d1c154c0f6368f662782a68de
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:55:39 2018 -0800

Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2"

This reverts commit 88ed73c006650e5bbd8f9abe1dd178cd3d9a533d.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 197a455..95988eb 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
 
 
 compiler-common
-0.9.5
+0.9.5-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index ccee7b4..9e18764 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   compiler-externc
-  0.9.5
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.5-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index df27f71..53efb62 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   compiler-jx
-  0.9.5
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.5-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.5-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 241c9db..3cd8f01 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.5
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 4219461..c268d8b 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   compiler
-  0.9.5
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5
+  0.9.5-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index cd192fd..dc0820d 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   debugger
-  0.9.5
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5
+  0.9.5-SNAPSHOT
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index 132997f..872d751 100644
--- 

[royale-compiler] branch release/0.9.4 updated (8b9c8fd -> 9869b64)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


from 8b9c8fd  [maven-release-plugin] prepare for next development iteration
 new f7b6e75  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new fd1c510  Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2"
 new 2ddae08  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new 9869b64  Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc1"

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  2 +-
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 36 insertions(+), 36 deletions(-)



[royale-compiler] 01/04: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit f7b6e7515b5c0fc9aa1a7b765e884cd8436e665b
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:55:24 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 8b9c8fd6194d221b702f7bcaa21057e47498cc33.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 744a47f..197a455 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
 
 
 compiler-common
-0.9.6-SNAPSHOT
+0.9.5
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index bb3df97..ccee7b4 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   compiler-externc
-  0.9.6-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.6-SNAPSHOT
+  0.9.5
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 883ec78..df27f71 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   compiler-jx
-  0.9.6-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   compiler
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.6-SNAPSHOT
+  0.9.5
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.6-SNAPSHOT
+  0.9.5
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 1548a33..241c9db 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   compiler-test-utils
-  0.9.6-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 49e0b71..4219461 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   compiler
-  0.9.6-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.6-SNAPSHOT
+  0.9.5
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 0f6b0c2..cd192fd 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   debugger
-  0.9.6-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.6-SNAPSHOT
+  0.9.5
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index fce5387..132997f 100644
--- 

[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 6429d0b  [maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2
6429d0b is described below

commit 6429d0b1b7d7258d7b98585cbf0edc7c84a80217
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:01:02 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index d8dc6a6..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.4-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 0716cd1..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index be99832..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 280f8a8..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 7bc504c..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 0efa2b6..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   

[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 deleted (was 25b2f57)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was deleted! ***

   tag was  25b2f57

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[royale-asjs.wiki] branch master updated: Updated Release Manager Notes (markdown)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 564a3b4  Updated Release Manager Notes (markdown)
564a3b4 is described below

commit 564a3b43f849b8e5296f6903c052cf73ceeb8ed7
Author: aharui 
AuthorDate: Tue Nov 13 20:53:08 2018 -0800

Updated Release Manager Notes (markdown)
---
 Release-Manager-Notes.md | 4 
 1 file changed, 4 insertions(+)

diff --git a/Release-Manager-Notes.md b/Release-Manager-Notes.md
index ae0b652..e650bc8 100644
--- a/Release-Manager-Notes.md
+++ b/Release-Manager-Notes.md
@@ -27,6 +27,10 @@ Another should be:
 
 In the royale-asjs and royale-typedefs branches there may be a third:
 
+`update other poms to current version`
+
+and fourth:
+
 `remove SNAPSHOT from compiler-build-tools versions`
 
 Revert these entries via "git revert "



[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 09dd0a3  [maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2
09dd0a3 is described below

commit 09dd0a3a1289ed2ec166b4ae80c49e85209cb42f
Author: Alex Harui 
AuthorDate: Tue Nov 13 21:30:32 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index d8dc6a6..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.4-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 0716cd1..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index be99832..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 280f8a8..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 7bc504c..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 0efa2b6..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   

[royale-typedefs] annotated tag org.apache.royale.typedefs-0.9.4-rc2 updated (7c72862 -> 91aa4e3)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.typedefs-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git.


*** WARNING: tag org.apache.royale.typedefs-0.9.4-rc2 was modified! ***

from 7c72862  (commit)
  to 91aa4e3  (tag)
 tagging 7c7286208e295a578e6650d7fd193c54a0b72cd1 (commit)
 replaces org.apache.royale.typedefs-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 20:15:22 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.typedefs-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-typedefs] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 32ade81  [maven-release-plugin] prepare for next development iteration
32ade81 is described below

commit 32ade816901a1e4ce0ea274562dd8daa0de4fcd1
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:15:30 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 2c9d133..5aaf725 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-gcl
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 34b9456..d258793 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-cordova
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index c54cde4..4d8bede 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-createjs
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index a30c5fe..6ec2fc8 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-googlemaps
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index f44b330..c54931e 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-jasmine
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 4a77892..320d818 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-jquery
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 7a9ab24..70acd1a 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index 4bdf3ef..3185e03 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.6-SNAPSHOT
   
 
   royale-typedefs-node
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.6-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index d65a808..818eb45 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.5
+  0.9.6-SNAPSHOT
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 

[royale-typedefs] branch release/0.9.4 updated: [maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 7c72862  [maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc2
7c72862 is described below

commit 7c7286208e295a578e6650d7fd193c54a0b72cd1
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:15:04 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc2
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 561d7bf..2c9d133 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-gcl
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 9fde480..34b9456 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-cordova
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 595b709..c54cde4 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-createjs
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 5903a4d..a30c5fe 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-googlemaps
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index 69ccd9d..f44b330 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-jasmine
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 3451ac6..4a77892 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-jquery
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index d9f7a31..7a9ab24 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index 56b2049..4bdf3ef 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-node
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index 1f25817..d65a808 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.5-SNAPSHOT
+  0.9.5
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 

[royale-typedefs] 04/05: Revert "[maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc1"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit fbc0187c09a687f181bdffae38f0f4fd5bcddcee
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:49:35 2018 -0800

Revert "[maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc1"

This reverts commit eb5f72b7d16cd48282ad149b949642d16599.
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index c417c8a..2ab95c5 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-gcl
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index dccb841..e4ace51 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-cordova
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 7902efe..0041ffb 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-createjs
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 8434c87..8c04f34 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-googlemaps
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index bedef4c..bd39e3a 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-jasmine
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 9011625..b2e5384 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-jquery
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 50291f4..6dbe7ea 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index d997008..cc25d11 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   royale-typedefs-node
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.4-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index d74fc60..5a27779 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.4
+  0.9.4-SNAPSHOT
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 scm:git:g...@github.com:apache/royale-typedefs.git
 
scm:git:g...@github.com:apache/royale-typedefs.git
 

[royale-typedefs] 03/05: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit e65c6f9733db76a327b4be927b7fea5cb8ebc14d
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:49:25 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 25beb258f34a1bffaa6b70e0236a7a2e862ca564.
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 561d7bf..c417c8a 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-gcl
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 9fde480..dccb841 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-cordova
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 595b709..7902efe 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-createjs
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 5903a4d..8434c87 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-googlemaps
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index 69ccd9d..bedef4c 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-jasmine
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 3451ac6..9011625 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-jquery
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index d9f7a31..50291f4 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index 56b2049..d997008 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-node
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index 1f25817..d74fc60 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.5-SNAPSHOT
+  0.9.4
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 scm:git:g...@github.com:apache/royale-typedefs.git
 
scm:git:g...@github.com:apache/royale-typedefs.git
 

[royale-typedefs] 05/05: Revert "remove SNAPSHOT from compiler-build-tools versions"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit fa72c52d63e8c4f13780245640149304e80e87e0
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:49:56 2018 -0800

Revert "remove SNAPSHOT from compiler-build-tools versions"

This reverts commit d31a53116abdb5dbc2681bdcc9296145d4763dc8.
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5a27779..e1d82a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@
 UTF-8
 3.3.1
 
-0.9.4
+0.9.4-SNAPSHOT
 1.0.0
 
 git



[royale-typedefs] branch release/0.9.4 updated (32ade81 -> fa72c52)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git.


from 32ade81  [maven-release-plugin] prepare for next development iteration
 new f820e6e  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new b52dcd3  Revert "[maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc2"
 new e65c6f9  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new fbc0187  Revert "[maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc1"
 new fa72c52  Revert "remove SNAPSHOT from compiler-build-tools versions"

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)



[royale-typedefs] 01/05: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit f820e6e1652e7adb42275e6cb474c8d9ccb15c20
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:48:32 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 32ade816901a1e4ce0ea274562dd8daa0de4fcd1.
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 5aaf725..2c9d133 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-gcl
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index d258793..34b9456 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-cordova
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 4d8bede..c54cde4 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-createjs
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 6ec2fc8..a30c5fe 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-googlemaps
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index c54931e..f44b330 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-jasmine
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 320d818..4a77892 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-jquery
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 70acd1a..7a9ab24 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index 3185e03..4bdf3ef 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.6-SNAPSHOT
+0.9.5
   
 
   royale-typedefs-node
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.6-SNAPSHOT
+  0.9.5
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index 818eb45..d65a808 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.6-SNAPSHOT
+  0.9.5
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 scm:git:g...@github.com:apache/royale-typedefs.git
 
scm:git:g...@github.com:apache/royale-typedefs.git
 

[royale-typedefs] 02/05: Revert "[maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc2"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit b52dcd38f6950cc85fbd81b2a29c840cdf85715b
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:48:57 2018 -0800

Revert "[maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc2"

This reverts commit 7c7286208e295a578e6650d7fd193c54a0b72cd1.
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 2c9d133..561d7bf 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-gcl
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index 34b9456..9fde480 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-cordova
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index c54cde4..595b709 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-createjs
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index a30c5fe..5903a4d 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-googlemaps
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index f44b330..69ccd9d 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-jasmine
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 4a77892..3451ac6 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-jquery
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 7a9ab24..d9f7a31 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index 4bdf3ef..56b2049 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.5
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-node
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.5
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index d65a808..1f25817 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.5
+  0.9.5-SNAPSHOT
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 scm:git:g...@github.com:apache/royale-typedefs.git
 
scm:git:g...@github.com:apache/royale-typedefs.git
 

[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 7bc44f1  [maven-release-plugin] prepare for next development iteration
7bc44f1 is described below

commit 7bc44f155f6a5c368c4cedb8a03274e770ee65cf
Author: Alex Harui 
AuthorDate: Tue Nov 13 21:31:01 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 2370a7b..95988eb 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
 
 
 compiler-common
-0.9.4
+0.9.5-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 249ed9d..9e18764 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 628aedc..53efb62 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-jx
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 0305699..3cd8f01 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 6182cd6..c268d8b 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 798627e..dc0820d 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   debugger
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   commons-lang
diff --git 

[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 updated (09dd0a3 -> 312b7ed)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was modified! ***

from 09dd0a3  (commit)
  to 312b7ed  (tag)
 tagging 09dd0a3a1289ed2ec166b4ae80c49e85209cb42f (commit)
 replaces org.apache.royale.compiler-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 21:30:51 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.compiler-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-asjs] 01/01: Merge branch 'feature/modal' into develop

2018-11-13 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 80f932e87d1a3d246389bc73572d8299e6064972
Merge: 74f3d81 4a36cf3
Author: Harbs 
AuthorDate: Wed Nov 14 09:58:57 2018 +0200

Merge branch 'feature/modal' into develop

# Conflicts:
#   
frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as

 examples/royale/AlertExample/asconfig.json |  14 ++
 .../royale/AlertExample/src/main/royale/ASModal.as |  56 ++
 .../AlertExample/src/main/royale/AlertExample.mxml |  29 ++-
 .../AlertExample/src/main/royale/MXMLModal.mxml|  29 +++
 .../Basic/src/main/resources/basic-manifest.xml|   3 +
 .../main/royale/org/apache/royale/core/UIBase.as   |   8 +-
 .../royale/html/beads/plugin/IModalDisplay.as  |  35 
 .../royale/html/beads/plugin/ModalDisplay.as   | 196 +++
 .../royale/html/beads/plugin/ModalOverlay.as   | 215 +
 9 files changed, 580 insertions(+), 5 deletions(-)

diff --cc 
frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
index fe894e3,ba2488d..457173f
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
@@@ -27,20 -27,20 +27,20 @@@ package org.apache.royale.cor
  import org.apache.royale.events.utils.MouseEventConverter;
  }

 +import org.apache.royale.core.IId;
++import org.apache.royale.core.IStyleObject;
 +  import org.apache.royale.events.Event;
 +  import org.apache.royale.events.IEventDispatcher;
 +  import org.apache.royale.events.MouseEvent;
 +  import org.apache.royale.events.ValueChangeEvent;
-   import org.apache.royale.utils.StringUtil;
 +  import org.apache.royale.utils.loadBeadFromValuesManager;
 +
  COMPILE::JS
  {
  import org.apache.royale.html.util.addElementToWrapper;
  import org.apache.royale.utils.CSSUtils;
  }
-   
+ 
 -import org.apache.royale.core.IId;
 -import org.apache.royale.core.IStyleObject;
 -import org.apache.royale.events.Event;
 -import org.apache.royale.events.IEventDispatcher;
 -import org.apache.royale.events.ValueChangeEvent;
 -import org.apache.royale.utils.loadBeadFromValuesManager;
 -
 -  
/**
 *  Set a different class for click events so that
 *  there aren't dependencies on the flash classes



[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 88ed73c  [maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2
88ed73c is described below

commit 88ed73c006650e5bbd8f9abe1dd178cd3d9a533d
Author: Alex Harui 
AuthorDate: Tue Nov 13 19:50:05 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 95988eb..197a455 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
 
 
 compiler-common
-0.9.5-SNAPSHOT
+0.9.5
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 9e18764..ccee7b4 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.5
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 53efb62..df27f71 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   compiler-jx
-  0.9.5-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.5
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.5
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 3cd8f01..241c9db 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index c268d8b..4219461 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   compiler
-  0.9.5-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.5
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index dc0820d..cd192fd 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.5
   
 
   debugger
-  0.9.5-SNAPSHOT
+  0.9.5
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5-SNAPSHOT
+  0.9.5
 
 
   

[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 deleted (was 312b7ed)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was deleted! ***

   tag was  312b7ed

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[royale-asjs] branch release/0.9.4 updated: Revert "remove SNAPSHOT from compiler and typedefs versions"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new b3d6252  Revert "remove SNAPSHOT from compiler and typedefs versions"
b3d6252 is described below

commit b3d62524cbf0c166c76d5288c8753e6bd1f2b039
Author: Alex Harui 
AuthorDate: Tue Nov 13 20:51:16 2018 -0800

Revert "remove SNAPSHOT from compiler and typedefs versions"

This reverts commit 5ca0da64f300bdcb18840332e0b6b86cb4167520.
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index b6f24fc..4f8f9e7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,8 +55,8 @@
 UTF-8
 3.5.4
 
-0.9.4
-0.9.4
+0.9.4-SNAPSHOT
+0.9.4-SNAPSHOT
 1.0.0
 
 true



[royale-compiler] annotated tag org.apache.royale.compiler-0.9.4-rc2 updated (bd3a972 -> b18ccbe)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.compiler-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


*** WARNING: tag org.apache.royale.compiler-0.9.4-rc2 was modified! ***

from bd3a972  (commit)
  to b18ccbe  (tag)
 tagging bd3a972ab552a33bb403b531f18bf15ce3618f6a (commit)
 replaces org.apache.royale.compiler-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 22:38:37 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.compiler-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new 36e80ef  [maven-release-plugin] prepare for next development iteration
36e80ef is described below

commit 36e80ef10ec38e4f790792a3b324da59d6e6f91f
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:38:47 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 2370a7b..95988eb 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
 
 
 compiler-common
-0.9.4
+0.9.5-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 249ed9d..9e18764 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 628aedc..53efb62 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-jx
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 0305699..3cd8f01 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 6182cd6..c268d8b 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.5-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 798627e..dc0820d 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   debugger
-  0.9.4
+  0.9.5-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4
+  0.9.5-SNAPSHOT
 
 
   commons-lang
diff --git 

[royale-compiler] branch release/0.9.4 updated: [maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new bd3a972  [maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2
bd3a972 is described below

commit bd3a972ab552a33bb403b531f18bf15ce3618f6a
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:38:19 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index d8dc6a6..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.4-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 0716cd1..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index be99832..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 280f8a8..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 7bc504c..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 0efa2b6..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.4-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4-SNAPSHOT
+  0.9.4
 
 
   

[royale-typedefs] branch release/0.9.4 updated: [maven-release-plugin] prepare for next development iteration

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git


The following commit(s) were added to refs/heads/release/0.9.4 by this push:
 new bf35a0e  [maven-release-plugin] prepare for next development iteration
bf35a0e is described below

commit bf35a0e3c8aaf1047c227262ab122133b6567c5a
Author: Alex Harui 
AuthorDate: Tue Nov 13 23:03:45 2018 -0800

[maven-release-plugin] prepare for next development iteration
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index c417c8a..561d7bf 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-gcl
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index dccb841..9fde480 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-cordova
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 7902efe..595b709 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-createjs
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 8434c87..5903a4d 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-googlemaps
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index bedef4c..69ccd9d 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-jasmine
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index 9011625..3451ac6 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-jquery
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 50291f4..d9f7a31 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index d997008..56b2049 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4
+0.9.5-SNAPSHOT
   
 
   royale-typedefs-node
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4
+  0.9.5-SNAPSHOT
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index 3815884..1f25817 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.4
+  0.9.5-SNAPSHOT
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 

[royale-typedefs] 01/02: remove SNAPSHOT from compiler-build-tools versions

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit 1eeea97cc25b91bdcf98b9e0fdc18d63fa2a15c2
Author: Alex Harui 
AuthorDate: Tue Nov 13 23:01:30 2018 -0800

remove SNAPSHOT from compiler-build-tools versions
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e1d82a8..5a27779 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,7 @@
 UTF-8
 3.3.1
 
-0.9.4-SNAPSHOT
+0.9.4
 1.0.0
 
 git



[royale-typedefs] annotated tag org.apache.royale.typedefs-0.9.4-rc2 updated (63e0dd0 -> 5236d79)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to annotated tag org.apache.royale.typedefs-0.9.4-rc2
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git.


*** WARNING: tag org.apache.royale.typedefs-0.9.4-rc2 was modified! ***

from 63e0dd0  (commit)
  to 5236d79  (tag)
 tagging 63e0dd031db9e08fd107cc112a6990134ad46db6 (commit)
 replaces org.apache.royale.typedefs-0.9.4-rc1
  by Alex Harui
  on Tue Nov 13 23:03:36 2018 -0800

- Log -
[maven-release-plugin] copy for tag org.apache.royale.typedefs-0.9.4-rc2
---


No new revisions were added by this update.

Summary of changes:



[royale-typedefs] 02/02: [maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc2

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git

commit 63e0dd031db9e08fd107cc112a6990134ad46db6
Author: Alex Harui 
AuthorDate: Tue Nov 13 23:03:20 2018 -0800

[maven-release-plugin] prepare release org.apache.royale.typedefs-0.9.4-rc2
---
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 4 ++--
 9 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/GCL/pom.xml b/GCL/pom.xml
index 2ab95c5..c417c8a 100644
--- a/GCL/pom.xml
+++ b/GCL/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-gcl
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: GCL
@@ -59,7 +59,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/cordova/pom.xml b/cordova/pom.xml
index e4ace51..dccb841 100644
--- a/cordova/pom.xml
+++ b/cordova/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-cordova
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Cordova
@@ -76,7 +76,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/createjs/pom.xml b/createjs/pom.xml
index 0041ffb..7902efe 100644
--- a/createjs/pom.xml
+++ b/createjs/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-createjs
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: CreateJS
@@ -239,7 +239,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/google_maps/pom.xml b/google_maps/pom.xml
index 8c04f34..8434c87 100644
--- a/google_maps/pom.xml
+++ b/google_maps/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-googlemaps
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: GoogleMaps
@@ -98,7 +98,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/jasmine/pom.xml b/jasmine/pom.xml
index bd39e3a..bedef4c 100644
--- a/jasmine/pom.xml
+++ b/jasmine/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-jasmine
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Jasmine
@@ -110,7 +110,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/jquery/pom.xml b/jquery/pom.xml
index b2e5384..9011625 100644
--- a/jquery/pom.xml
+++ b/jquery/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-jquery
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: JQuery
@@ -164,7 +164,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/js/pom.xml b/js/pom.xml
index 6dbe7ea..50291f4 100644
--- a/js/pom.xml
+++ b/js/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: JS
diff --git a/node/pom.xml b/node/pom.xml
index cc25d11..d997008 100644
--- a/node/pom.xml
+++ b/node/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.typedefs
 royale-typedefs-parent
-0.9.4-SNAPSHOT
+0.9.4
   
 
   royale-typedefs-node
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
 
   Apache Royale: TypeDefs: Node
@@ -228,7 +228,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-js
-  0.9.4-SNAPSHOT
+  0.9.4
   swc
   typedefs
   runtime
diff --git a/pom.xml b/pom.xml
index 5a27779..3815884 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
 
   org.apache.royale.typedefs
   royale-typedefs-parent
-  0.9.4-SNAPSHOT
+  0.9.4
   pom
 
   Apache Royale: TypeDefs: Parent
@@ -37,7 +37,7 @@
 scm:git:g...@github.com:apache/royale-typedefs.git
 
scm:git:g...@github.com:apache/royale-typedefs.git
 scm:git:g...@github.com:apache/royale-typedefs.git
-release/0.9.4
+

[royale-typedefs] branch release/0.9.4 updated (fa72c52 -> 63e0dd0)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-typedefs.git.


from fa72c52  Revert "remove SNAPSHOT from compiler-build-tools versions"
 new 1eeea97  remove SNAPSHOT from compiler-build-tools versions
 new 63e0dd0  [maven-release-plugin] prepare release 
org.apache.royale.typedefs-0.9.4-rc2

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 GCL/pom.xml | 6 +++---
 cordova/pom.xml | 6 +++---
 createjs/pom.xml| 6 +++---
 google_maps/pom.xml | 6 +++---
 jasmine/pom.xml | 6 +++---
 jquery/pom.xml  | 6 +++---
 js/pom.xml  | 4 ++--
 node/pom.xml| 6 +++---
 pom.xml | 6 +++---
 9 files changed, 26 insertions(+), 26 deletions(-)



[royale-compiler] 01/02: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit 6f3a7346f337157ecbed6e5f8411b37b7bbfda7a
Author: Alex Harui 
AuthorDate: Tue Nov 13 21:55:03 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 7bc44f155f6a5c368c4cedb8a03274e770ee65cf.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 95988eb..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.5-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 9e18764..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 53efb62..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 3cd8f01..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index c268d8b..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index dc0820d..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index 872d751..dd20460 100644
--- 

[royale-compiler] branch release/0.9.4 updated (7bc44f1 -> 4e81189)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


from 7bc44f1  [maven-release-plugin] prepare for next development iteration
 new 6f3a734  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new 4e81189  Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2"

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  2 +-
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 36 insertions(+), 36 deletions(-)



[royale-compiler] branch release/0.9.4 updated (2b584ba -> d2b0450)

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git.


from 2b584ba  [maven-release-plugin] prepare for next development iteration
 new dceb101  Revert "[maven-release-plugin] prepare for next development 
iteration"
 new d2b0450  Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2"

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  2 +-
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 36 insertions(+), 36 deletions(-)



[royale-compiler] 01/02: Revert "[maven-release-plugin] prepare for next development iteration"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit dceb1015deb98977f6083cbde7ff6528789fc442
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:31:03 2018 -0800

Revert "[maven-release-plugin] prepare for next development iteration"

This reverts commit 2b584ba60353bf9bd93eea6336f19eb28455d2f0.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 95988eb..2370a7b 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
 
 
 compiler-common
-0.9.5-SNAPSHOT
+0.9.4
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 9e18764..249ed9d 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 53efb62..628aedc 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-jx
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 3cd8f01..0305699 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index c268d8b..6182cd6 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.5-SNAPSHOT
+  0.9.4
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index dc0820d..798627e 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.5-SNAPSHOT
+0.9.4
   
 
   debugger
-  0.9.5-SNAPSHOT
+  0.9.4
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.5-SNAPSHOT
+  0.9.4
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index 872d751..dd20460 100644
--- 

[royale-compiler] 02/02: Revert "[maven-release-plugin] prepare release org.apache.royale.compiler-0.9.4-rc2"

2018-11-13 Thread aharui
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.4
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit d2b04507ea7464cd080b793fe7cceb229082d562
Author: Alex Harui 
AuthorDate: Tue Nov 13 22:31:14 2018 -0800

Revert "[maven-release-plugin] prepare release 
org.apache.royale.compiler-0.9.4-rc2"

This reverts commit 6429d0b1b7d7258d7b98585cbf0edc7c84a80217.
---
 compiler-common/pom.xml |  4 ++--
 compiler-externc/pom.xml|  8 
 compiler-jx/pom.xml | 14 +++---
 compiler-test-utils/pom.xml |  4 ++--
 compiler/pom.xml| 10 +-
 debugger/pom.xml|  8 
 flex-compiler-oem/pom.xml   | 10 +-
 pom.xml |  4 ++--
 royale-ant-tasks/pom.xml|  4 ++--
 royale-maven-plugin/pom.xml |  4 ++--
 swfutils/pom.xml|  4 ++--
 11 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index 2370a7b..d8dc6a6 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -23,11 +23,11 @@
 
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
 
 
 compiler-common
-0.9.4
+0.9.4-SNAPSHOT
 
 Apache Royale: Compiler: Compiler-Common
 The Apache Royale Compiler Common classes
diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 249ed9d..0716cd1 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Externc
   The Apache Royale Compiler Externs Compiler
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   com.google.javascript
@@ -138,7 +138,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 628aedc..be99832 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-jx
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Compiler-JX
 
@@ -73,17 +73,17 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.commons
@@ -115,7 +115,7 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
@@ -127,7 +127,7 @@
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
   test-jar
   test
 
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index 0305699..280f8a8 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Test Utils
   
diff --git a/compiler/pom.xml b/compiler/pom.xml
index 6182cd6..7bc504c 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Compiler
   The Apache Royale Compiler
@@ -503,7 +503,7 @@
 
   org.apache.royale.compiler
   compiler-common
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.flex
@@ -555,13 +555,13 @@
 
   org.apache.royale.compiler
   compiler-test-utils
-  0.9.4
+  0.9.4-SNAPSHOT
   test
 
 
   org.apache.royale.compiler
   compiler-externc
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   junit
diff --git a/debugger/pom.xml b/debugger/pom.xml
index 798627e..0efa2b6 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -23,11 +23,11 @@
   
 org.apache.royale.compiler
 royale-compiler-parent
-0.9.4
+0.9.4-SNAPSHOT
   
 
   debugger
-  0.9.4
+  0.9.4-SNAPSHOT
 
   Apache Royale: Compiler: Debugger
 
@@ -82,12 +82,12 @@ Do all the JBurg code generation.
 
   org.apache.royale.compiler
   compiler
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   org.apache.royale.compiler
   swfutils
-  0.9.4
+  0.9.4-SNAPSHOT
 
 
   commons-lang
diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index dd20460..83b041e 100644
---