Browse Source

rev for 0.0.5

jrburke 11 years ago
parent
commit
9fb295c053
3 changed files with 8 additions and 4 deletions
  1. 2 2
      README.md
  2. 1 1
      amdefine.js
  3. 5 1
      package.json

+ 2 - 2
README.md

@@ -10,7 +10,7 @@ requiring those other programs to use AMD.
 
 ```javascript
     "dependencies": {
-        "amdefine": ">=0.0.2"
+        "amdefine": ">=0.0.5"
     }
 ```
 
@@ -37,7 +37,7 @@ declarations of the same variable in the same scope gracefully.
 If you want to deliver amdefine.js with your code rather than specifying it as a dependency
 with npm, then just download the latest release and refer to it using a relative path:
 
-[Version 0.0.2](https://github.com/jrburke/amdefine/raw/0.0.2/amdefine.js)
+[Latest Version](https://github.com/jrburke/amdefine/raw/latest/amdefine.js)
 
 ## define() usage
 

+ 1 - 1
amdefine.js

@@ -1,5 +1,5 @@
 /** vim: et:ts=4:sw=4:sts=4
- * @license amdefine 0.0.4 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
+ * @license amdefine 0.0.5 Copyright (c) 2011, The Dojo Foundation All Rights Reserved.
  * Available via the MIT or new BSD license.
  * see: http://github.com/jrburke/amdefine for details
  */

+ 5 - 1
package.json

@@ -1,7 +1,7 @@
 {
     "name": "amdefine",
     "description": "Provide AMD's define() API for declaring modules in the AMD format",
-    "version": "0.0.4",
+    "version": "0.0.5",
     "homepage": "http://github.com/jrburke/amdefine",
     "author": "James Burke <jrburke@gmail.com> (http://github.com/jrburke)",
     "licenses": [
@@ -14,6 +14,10 @@
             "url": "https://github.com/jrburke/amdefine/blob/master/LICENSE"
         }
     ],
+    "repository": {
+        "type": "git",
+        "url": "https://github.com/jrburke/amdefine.git"
+    },
     "main": "./amdefine.js",
     "engines": {
         "node": ">=0.4.2"