Skip to content
This repository has been archived by the owner on May 25, 2019. It is now read-only.

Commit

Permalink
Bumping for 1.0.0
Browse files Browse the repository at this point in the history
* update deps
* update docs and history
  • Loading branch information
caridy committed Aug 12, 2014
1 parent db6fa8d commit 8ac0994
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 56 deletions.
12 changes: 10 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
Locator Change History
======================

# 1.0.0-rc-1
# 1.0.0

* **!IMPORTANT!** This release contains a notable backward-incompatible change..
* **!IMPORTANT!** This release contains a notable backward-incompatible change.
* **!Backwards-Incompatible Change!** sync version of locator without plugins.
* **!Backwards-Incompatible Change!** removed support for nodejs 0.8.x.

### No more plugins

The support for plugins was removed, and therefore, any build process for files
and resources should happen as a separate routine. This new version of locator can
be used by grunt/gulp/broccoli tasks to apply custom builds based on the semantic
of the application, in it can also be used during the runtime process as part of
application code to get the semantic of the source files and resources.

# 0.3.10

* Do not override an existing promise implementation with `ypromise`. This opens
Expand Down
5 changes: 2 additions & 3 deletions lib/rulesets.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ module.exports = {
// selectorKey has no default. selector is only used if selectorKey is given

'main': {
// This empty ruleset can be used by packages which have files that
// should be walked by plugins, but which don't otherwise contain
// resources.
// This empty ruleset can be used by packages with files but without
// explicit resources.
}
};
102 changes: 51 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
{
"name": "locator",
"description": "gives semantic meaning to filesystem paths",
"version": "1.0.0-rc-1",
"homepage": "https://github.com/yahoo/locator",
"keywords": [
"filesystem",
"fs",
"mojito",
"modown"
],
"repository": {
"type": "git",
"url": "https://github.com/yahoo/locator.git"
},

"author": "Drew Folta <[email protected]>",
"contributors": [
"Isao Yagi <isao@yahoo-inc.com>",
"Michael Ridgway <mridgway@yahoo-inc.com>",
"Caridy Patino <caridy@yahoo-inc.com> (http://github.com/caridy)",
"alberto chan <[email protected]>"
],
"license": "BSD",

"main": "lib/bundleLocator.js",
"files": ["lib/"],
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">0.8",
"npm": ">1.0"
},
"dependencies": {
"walk": "^2.3.1",
"semver": "^1.1.4"
},
"devDependencies": {
"chai": "~1.6.1",
"istanbul": "*",
"jshint": "~0.9.0",
"mocha": "*",
"xunit-file": "*",
"yui-lint": "~0.1.3"
},
"scripts": {
"cover": "istanbul cover -- _mocha tests/lib/ --reporter spec",
"lint": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/",
"pretest": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/",
"test": "_mocha tests/lib/ --reporter spec"
}
"name": "locator",
"description": "gives semantic meaning to filesystem paths",
"version": "1.0.0",
"homepage": "https://github.com/yahoo/locator",
"keywords": [
"filesystem",
"fs",
"mojito",
"modown"
],
"repository": {
"type": "git",
"url": "https://github.com/yahoo/locator.git"
},
"author": "Drew Folta <[email protected]>",
"contributors": [
"Isao Yagi <[email protected]>",
"Michael Ridgway <mridgway@yahoo-inc.com>",
"Caridy Patino <caridy@yahoo-inc.com> (http://github.com/caridy)",
"alberto chan <albertoc@yahoo-inc.com>"
],
"license": "BSD",
"main": "lib/bundleLocator.js",
"files": [
"lib/"
],
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">0.8",
"npm": ">1.0"
},
"dependencies": {
"walk": "^2.3.1",
"semver": "^1.1.4"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "*",
"jshint": "^2.5.3",
"mocha": "*",
"xunit-file": "*",
"yui-lint": "^0.2.0"
},
"scripts": {
"cover": "istanbul cover -- _mocha tests/lib/ --reporter spec",
"lint": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/",
"pretest": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/",
"test": "_mocha tests/lib/ --reporter spec"
}
}

0 comments on commit 8ac0994

Please sign in to comment.