Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Nov 24, 2010
1 parent ff5f549 commit def1a81
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
7 changes: 5 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## v0.1.1-14
* Fixed incorrect handling of large streams
* Better support for request timeouts
* Bug fixes

### v0.1.1-6
* Added a debug switch -g

### v0.1.1-5
* Minor bug fixes
* Added HTTP code handler - auto support for redirects, etc.

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Check [@nodeio](http://twitter.com/nodeio) or [http://node.io/](http://node.io/)

- Fix up the [http://node.io/](http://node.io/) site
- `-d,--daemon` node.io switch
- Add a debug mode which outputs information about requests, redirects, etc.
- Nested requests inherit referrer / cookies / user-agent if to the same domain
- Add more DOM [selector](http://api.jquery.com/category/selectors/) / [traversal](http://api.jquery.com/category/traversing/) methods
- ..or attempt a full port of jQuery that's compatible with [htmlparser](https://github.com/tautologistics/node-htmlparser) (I know a port already exists, but it uses the far less forgiving [JSDOM](https://github.com/tmpvar/jsdom))
Expand Down
2 changes: 1 addition & 1 deletion lib/node.io/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var processor = require('./processor'),
job = require('./job');

exports = module.exports = {
version: '0.1.1-13',
version: '0.1.1-14',
Processor: processor.Processor,
JobProto: job.JobProto, //A reference to the underlying Job.prototype
JobClass: job.JobClass, //A reference to a new prototype identical to Job.prototype (so Job.prototype isn't modified)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "name" : "node.io",
"description" : "A distributed data scraping and processing framework for node.js",
"version" : "0.1.1-13",
"version" : "0.1.1-14",
"homepage" : "http://github.com/chriso/node.io",
"keywords" : ["data","mapreduce","map","reduce","scraping","html","parsing","parse","scrape","process","processing","data"],
"author" : "Chris O'Hara <cohara87@gmail.com>",
Expand All @@ -17,7 +17,7 @@
"engines" : { "node" : ">=0.2.4" },
"dependencies": {
"soupselect": ">= 0.2.0",
"validator": ">= 0.1.0",
"validator": ">= 0.1.1",
"expresso": ">= 0.7.0",
"coffee-script": ">= 0.9.5"
},
Expand Down

0 comments on commit def1a81

Please sign in to comment.