Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikestead committed Jun 5, 2013
1 parent 9f0400e commit e03dd80
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -13,4 +13,6 @@ example.swf

/example/build/Main
/example/build/example_cpp/
.mcover
.mcover
/MassiveMVC.iml
/.idea/
3 changes: 2 additions & 1 deletion CHANGES.md
Expand Up @@ -2,4 +2,5 @@
1.1.0 Inject the signal that triggered a command into the command
1.1.1 Fix memory leak for JS target with attendedToInjectees
1.2.0 Switch to minject dependency without inline dependencies.
1.3.0 Added support for Haxe 3.
1.3.0 Added support for Haxe 3.
1.3.1 Added haxelib.json
3 changes: 2 additions & 1 deletion build/Build.hx
Expand Up @@ -34,7 +34,8 @@ class Build extends mtask.core.BuildBase
{
target.url = "http://github.com/massiveinteractive/mmvc";
target.description = "A Haxe port of the ActionScript 3 RobotLegs MVC framework with signals and Haxe refinements. Supports AVM1, AVM2, JavaScript, Neko and C++.";
target.versionDescription = "Added support for Haxe 3.";
target.versionDescription = "Added haxelib.json.";
target.username = "massive";

target.addDependency("msignal");
target.addDependency("minject");
Expand Down
4 changes: 2 additions & 2 deletions project.json
Expand Up @@ -2,7 +2,7 @@
"project":
{
"name": "MassiveMVC",
"version": "1.3.0",
"version": "1.3.1",
"id": "mmvc",
"dependencies":
{
Expand All @@ -16,4 +16,4 @@
"mcover": "2.x"
}
}
}
}
15 changes: 15 additions & 0 deletions src/haxelib.json
@@ -0,0 +1,15 @@
{
"name": "mmvc",
"license": "MIT",
"tags": ["cross","massive","mvc"],
"description": "A Haxe port of the ActionScript 3 RobotLegs MVC framework with signals and Haxe refinements. Supports AVM1, AVM2, JavaScript, Neko and C++.",
"contributors": ["massive"],
"releasenote": "Added haxelib.json.",
"version": "1.3.1",
"url": "http://github.com/massiveinteractive/mmvc",
"dependencies":
{
"minject": "",
"msignal": ""
}
}
2 changes: 1 addition & 1 deletion src/haxelib.xml
@@ -1,7 +1,7 @@
<project name="mmvc" url="http://github.com/massiveinteractive/mmvc" license="MIT">
<user name="massive"/>
<description><![CDATA[A Haxe port of the ActionScript 3 RobotLegs MVC framework with signals and Haxe refinements. Supports AVM1, AVM2, JavaScript, Neko and C++.]]></description>
<version name="1.3.0"><![CDATA[Added support for Haxe 3.]]></version>
<version name="1.3.1"><![CDATA[Added haxelib.json.]]></version>
<depends name="msignal"/>
<depends name="minject"/>
<tag v="cross"/>
Expand Down

0 comments on commit e03dd80

Please sign in to comment.