diff --git a/classeur-api-client.js b/classeur-api-client.js index dfe081e..0fe6106 100644 --- a/classeur-api-client.js +++ b/classeur-api-client.js @@ -74,7 +74,7 @@ class ClasseurClient { functionUtils.restOrArrayAndCallback(function(array, cb) { async.map( array, - (item, mcb) => { p(item); this.getFile(item, mcb) }, + (item, mcb) => { this.getFile(item, mcb) }, functionUtils.scrubArrayCallback(cb, true, array.length) ) }, this)(...arguments) diff --git a/doc/generator/VersionIndex.md.tpl b/doc/generator/VersionIndex.md.tpl index d167f1a..ebcef0e 100644 --- a/doc/generator/VersionIndex.md.tpl +++ b/doc/generator/VersionIndex.md.tpl @@ -22,6 +22,8 @@ Each link below will take you to the README for the given package version: - [0.2.3](<%- path %>versions/0.2.3/index.html) - [0.3.0](<%- path %>versions/0.3.0/index.html) - [0.3.1](<%- path %>versions/0.3.1/index.html) +- [0.3.2](<%- path %>versions/0.3.2/index.html) +- [0.3.3](<%- path %>versions/0.3.3/index.html) - [development/unstable (master)](<%- path %>versions/master/index.html) # Release Notes @@ -70,4 +72,7 @@ Each link below will take you to the README for the given package version: - Improved documentation builder/auto publisher. ### 0.3.2 -- Added back the ability to get content of files (gradual deprecation of the V1 API broke it; using parts of the V2 API now). See GitHub issue #3 for more info. \ No newline at end of file +- Added back the ability to get content of files (gradual deprecation of the V1 API broke it; using parts of the V2 API now). See GitHub issue #3 for more info. + +### 0.3.3 +- Removal of a debug print statement. \ No newline at end of file diff --git a/doc/tutorials/DeveloperGuide.md b/doc/tutorials/DeveloperGuide.md index 60ae091..f2ec019 100644 --- a/doc/tutorials/DeveloperGuide.md +++ b/doc/tutorials/DeveloperGuide.md @@ -42,7 +42,7 @@ To get everything in sync with NPM and GitHub, do the following (I'll automate a 1. Code and test new release. - Be sure to remove or comment out uses of `eyes.js`, e.g. by searching for and commenting `require('eyes')`. - Be sure to revert any user API keys checked into the test assets in `test/asset/private`. The `addchanges.command` script can help with that. -2. Tag release with npm: `npm release major|minor|patch`. +2. Tag release with npm: `npm version major|minor|patch`. 3. Build, check and publish `master` documentation. 4. Build, check and publish `current-version` documentation. 5. Check out the pages branch (`git checkout gh-pages; git pull`) and update the symlink in `versions/latest` to point to the latest release. Push your changes.