diff --git a/changelog.md b/changelog.md index 2626c29..06889c6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,13 @@ -Upcoming / 2011-08-23 +Upcoming / 2011-08-24 ===================== + * fixed regex for replacing github ticket numbers with url to the ticket so it wouldn't + blindly match #. + +0.1.0 / 2011-08-23 +================== + + * update changelog * update version * show the author's name if the repo url is not in the module's package.json. * fix exception that happens when a module isn't found @@ -27,8 +34,8 @@ Upcoming / 2011-08-23 * upped version * added changelog for changelog - * run changelog in the root of a node project with a package.json and it will use it to - create the changelog. + * run changelog in the root of a node project with a package.json and it will use it to create + the changelog. 0.0.6 / 2011-08-06 ================== diff --git a/examples/express.markdown b/examples/express.markdown index c8ff0d3..8078f97 100644 --- a/examples/express.markdown +++ b/examples/express.markdown @@ -48,8 +48,7 @@ * Changed: removed .call(self) for route callbacks not sure why we had this, ive never even used it and the tests dont cover it, and its slower - * Added `app.routes.all()`. Closes - [#803](https://github.com/visionmedia/express/issues/803) + * Added `app.routes.all()`. Closes [#803](https://github.com/visionmedia/express/issues/803) not a huge fan of this API-wise, but at least it is something for now * Fixed `res.redirect()` on windows due to `join()` usage. Closes [#808](https://github.com/visionmedia/express/issues/808) diff --git a/examples/node.markdown b/examples/node.markdown index 823e6e2..6a72015 100644 --- a/examples/node.markdown +++ b/examples/node.markdown @@ -1,6 +1,38 @@ +2011-08-24 +========== + + * docs: Improved http2 agent docs + Fixes [#1517](https://github.com/joyent/node/issues/1517). + * vcbuild.bat - for building from cmd-line using msbuild + * tools/test.py to support marking files a libuv-broken + Use + export NODE_USE_UV=1 + python tools/test.py --libuv simple pummel + To run the equivalent of "make test-uv". + * Mark tests which are broken in libuv + 2011-08-23 ========== + * Support MSVS build directories in tools/test.py + * Use Object.getPrototypeOf() on the object in the REPL tab-completion. + Some people use __proto__ to augment an Object's prototype after it's been created. + This patch helps make the "new" prototype properties visible if necessary. + This is also more consistent with the while logic below. + * Upgrade V8 to 3.5.7 + * waf: Don't build out/Debug/node_g - just out/Debug/node + This is to match how GYP does it. + * net_legacy: Fix throw typo + Thanks Tobi + * WAF builds in out/ instead of build/ + * Have WAF variants match GYP configuration names + * gyp: Further fixes to target_defaults for mac + * gyp: Don't pass C++ flags to C compiler, and don't pass -ansi in OpenSSL builds. + * common.gypi: don't nest "target_defaults" within "target_defaults" + The "conditions" block is already within a "target_defaults", so its + children amend target default settings already. + * dns: Force the DNS module to invoke callbacks asynchronously. + Fixes [#1164](https://github.com/joyent/node/issues/1164). * net_uv: throw when people construct net.Socket(fd) Easier to catch compatibility errors. @@ -25,8 +57,7 @@ 2011-08-20 ========== - * Fix [#1563](https://github.com/joyent/node/issues/1563). overflow in ChildProcess - custom_fd. + * Fix [#1563](https://github.com/joyent/node/issues/1563). overflow in ChildProcess custom_fd. 2011-08-19 ========== @@ -44,8 +75,8 @@ * bench: make number of response body chunks configurable in http_simple * Fix [#1546](https://github.com/joyent/node/issues/1546) some more. Remove expensive debug call. - * Close [#1544](https://github.com/joyent/node/issues/1544) Document slashesDenoteHost flag - in url.parse + * Close [#1544](https://github.com/joyent/node/issues/1544) Document slashesDenoteHost flag in + url.parse * Merge remote branch 'origin/v0.4' Conflicts: doc/api/tls.markdown @@ -143,8 +174,7 @@ * typed arrays: integrate plask's typed array implementation * crypto: PBKDF2 function from OpenSSL * uv: upgrade to 7f82995 - * Incorporate endianness into buffer.read* function names instead of passing in a boolean - flag + * Incorporate endianness into buffer.read* function names instead of passing in a boolean flag * test: enable simple/test-http-dns-error for `make test-uv` * test: add test for [#1202](https://github.com/joyent/node/issues/1202), uncatchable exception on bad host name @@ -170,8 +200,8 @@ * Add some debug output to test-child-process-double-pipe * net_uv: resume on closed net.Socket shouldn't crash * build: .gitignore build/ directory - * Fix [#1497](https://github.com/joyent/node/issues/1497) querystring: Replace 'in' test - with 'hasOwnProperty' + * Fix [#1497](https://github.com/joyent/node/issues/1497) querystring: Replace 'in' test with + 'hasOwnProperty' * http: destroy socket on error Needs further investigation, the test passed without `--use-uv`. Fixes failing test: @@ -203,30 +233,3 @@ * tcp: propagate libuv tcp accept() errors to net_uv.js * Upgrade libuv to db190c7 * net_uv: Handle failed shutdown req - * Add test-pipe-file-to-http to test-uv - * net_uv: fix test/simple/test-pipe-file-to-http.js - * test: Allow common.ddCommand to be run in presence of existing file - * x-platform func for spawning pwd in tests - Fixes test-child-process-buffering - * Explicitly disable cr/lf conversion for test fixtures - Otherwise git's autocrlf feature makes test fail on windows. - * Revert "Make test-sync-fileread pass even when git cr/lf conversion is enabled" - We'll solve this problem with a .gitattributes file. - This reverts commit 27ef0b0903e348cc10d0c5d2ee2ef25aa1676440. - * Add NPN and SNI documentation. - Fixes [#1420](https://github.com/joyent/node/issues/1420). - Fixes [#1426](https://github.com/joyent/node/issues/1426). - -2011-08-09 -========== - - * Make test-sync-fileread pass even when git cr/lf conversion is enabled - * Open files in binary mode, on msvc too - * Remove unnecessary line - * Fix test-net-server-on-fd-0 for windows by removing assert - Rename to regression test for GH-746 as the fd 0 behavior was not what the - bug report was about. - * Add fixed tests to test-uv - * Fix dd command tests for Windows - * Fix test/simple/test-repl - * Improve win compat of test-repl diff --git a/examples/npm.json b/examples/npm.json index cacb35b..2ae74c3 100644 --- a/examples/npm.json +++ b/examples/npm.json @@ -1 +1 @@ -{"project":{"github":"isaacs/npm","repository":"https://github.com/isaacs/npm"},"versions":[{"version":"Upcoming","date":"2011-08-23T15:30:11.000Z","changes":[{"date":"2011-08-23T15:30:11.000Z","message":"Support using 'node npm.js blah'"},{"date":"2011-08-23T15:07:43.000Z","message":"Close #1299 Don't catch silently"},{"date":"2011-08-23T02:05:40.000Z","message":"Don't make the first arg always an array."},{"date":"2011-08-23T01:09:19.000Z","message":"Ensure that npm.commands functions always called with an args array"},{"date":"2011-08-23T01:09:04.000Z","message":"Call the cb to prefix, root, and bin with the printed value"},{"date":"2011-08-22T22:22:07.000Z","message":"Add user info to 'scripts' helpdoc"},{"date":"2011-08-22T22:20:52.000Z","message":"Fix #1296 Better messaging on bad url configs"},{"date":"2011-08-22T18:00:33.000Z","message":"Add git url info"},{"date":"2011-08-18T15:47:03.000Z","message":"Close #1284 Make EPIPE less noisy"}]},{"version":"1.0.26","date":"2011-08-17T23:55:48.942Z","changes":[{"date":"2011-08-17T23:55:12.000Z","message":"v1.0.26"},{"date":"2011-08-17T23:55:12.000Z","message":"Preserve other members of command functions"},{"date":"2011-08-17T16:38:17.000Z","message":"Friendlier 'npm.install(foo)' for repl poking."},{"date":"2011-08-17T07:50:39.000Z","message":"Fix #1272 Better first-class citizenship for git urls"},{"date":"2011-08-16T18:28:33.000Z","message":"Re #1269 Install into DESTDIR if set"}]},{"version":"1.0.25","date":"2011-08-16T00:55:41.552Z","changes":[{"date":"2011-08-15T15:36:05.000Z","message":"Support removing non-existent users from package manatainer lists"},{"date":"2011-08-15T03:22:04.000Z","message":"Provide default cb if none supplied\n\nMake it much nicer to poke around on the repl. The default\ncallback function just dumps the data or error to stdout\nor stderr."},{"date":"2011-08-14T20:10:46.000Z","message":"v1.0.25"},{"date":"2011-08-14T20:05:26.000Z","message":"Use the non-delta uri for inital search index build"},{"date":"2011-08-14T19:10:43.000Z","message":"Don't set agent:false if http2 is in use"}]},{"version":"1.0.24","date":"2011-08-10T19:58:28.529Z","changes":[{"date":"2011-08-10T19:58:00.000Z","message":"v1.0.24"},{"date":"2011-08-10T19:57:46.000Z","message":"Force exit. Temporary workaround for Linux rimraf timeout issue.\n\nTODO: Fix properly."}]},{"version":"1.0.23","date":"2011-08-07T23:57:08.645Z","changes":[{"date":"2011-08-07T23:56:33.000Z","message":"update which (trivial)"},{"date":"2011-08-07T23:31:30.000Z","message":"debuggery"},{"date":"2011-08-07T23:30:12.000Z","message":"v1.0.23"},{"date":"2011-08-07T19:06:11.000Z","message":"Remove base64 module. Just use the Buffer directly"},{"date":"2011-08-07T18:39:08.000Z","message":".js extensions on require() calls in npm.js"},{"date":"2011-08-07T18:38:03.000Z","message":"Abstract out 'which'"},{"date":"2011-08-07T18:20:55.000Z","message":"make doc"},{"date":"2011-08-07T18:19:36.000Z","message":"Remove minimatch.js, using dep now"},{"date":"2011-08-07T08:46:38.000Z","message":"Handle git+ urls in the name@url case"},{"date":"2011-08-07T08:45:19.000Z","message":"Close #1225 Add git url support. Experimental"},{"date":"2011-08-07T07:10:37.000Z","message":"unbreak ini stuff. no longer using '-' key"},{"date":"2011-08-07T07:06:45.000Z","message":"Use standalone ini parser"},{"date":"2011-08-07T05:06:38.000Z","message":"Add proto-list as dep and submodule"},{"date":"2011-08-07T03:59:26.000Z","message":"update rimraf"},{"date":"2011-08-07T03:55:26.000Z","message":"Allow private per-package confs\n\nJust prefix them with a _. Transparent to the receiving module."},{"date":"2011-08-07T03:40:29.000Z","message":"Use rimraf instead of local thing"},{"date":"2011-08-06T23:52:46.000Z","message":"fixup rimraf"},{"date":"2011-08-06T23:13:59.000Z","message":"Add rimraf submodule"},{"date":"2011-08-06T21:01:45.000Z","message":"make doc"},{"date":"2011-08-06T21:01:41.000Z","message":"minor faq fixes"},{"date":"2011-08-06T20:51:59.000Z","message":"Put .js on filenames"},{"date":"2011-08-06T20:51:52.000Z","message":"Question about Capitalization"},{"date":"2011-08-05T23:20:12.000Z","message":"Close #1235 Swap out unicode tree chars"},{"date":"2011-08-04T23:40:30.000Z","message":"Better error handling for adduser"},{"date":"2011-08-04T04:27:22.000Z","message":"undefined log message error"},{"date":"2011-08-04T02:09:00.000Z","message":"Setting the host there is the wrong thing to do"},{"date":"2011-08-03T22:10:24.000Z","message":"Set host header explicitly"},{"date":"2011-08-03T08:37:44.000Z","message":"Clean up and refactor the oversized npm.load function"},{"date":"2011-08-02T19:34:57.000Z","message":"Close #1214 Don't create an invalid engine range"},{"date":"2011-08-01T21:31:46.000Z","message":"newloctimeout should not be a global."},{"date":"2011-08-01T21:30:47.000Z","message":"Revert \"Check hostkey fingerprints when registry is https\"\n\nThis reverts commit ca52fe6045d6acf37597c66d30b5c2d490b07f79."},{"date":"2011-08-01T05:26:16.000Z","message":"Check hostkey fingerprints when registry is https"},{"date":"2011-08-01T05:20:19.000Z","message":"Add a --yes config flag (with -y and -n shorthands)"},{"date":"2011-07-31T21:21:13.000Z","message":"Fix invalid array length when no search hits found"},{"date":"2011-07-30T16:47:24.000Z","message":"Confusion about args vs conf"},{"date":"2011-07-29T17:07:15.000Z","message":"Report 404 errors properly with non-vhosted registries"},{"date":"2011-07-28T22:42:46.000Z","message":"Closes #1199 Support 'npm unpublish .'"},{"date":"2011-07-28T22:42:20.000Z","message":"Close #1068 Add header to search output"},{"date":"2011-07-28T15:18:15.000Z","message":"Re #1196 Warn on non-array 'files' in json"},{"date":"2011-07-27T20:22:25.000Z","message":"slide@1.1.3"},{"date":"2011-07-27T16:23:24.000Z","message":"Support npm_debug env in install script"},{"date":"2011-07-26T22:15:54.000Z","message":"Default prefix to PREFIX environ if set"},{"date":"2011-07-26T22:14:56.000Z","message":"No need to clean cache as often, makes search slow"},{"date":"2011-07-26T22:13:26.000Z","message":"Clearer messaging of cleanup prefix"},{"date":"2011-07-26T22:13:07.000Z","message":"Prefer https:// to git:// for github urls"},{"date":"2011-07-26T18:53:32.000Z","message":"Close #1187 Use https:// for submodules instead of git://"},{"date":"2011-07-25T20:26:12.000Z","message":"Remove mkdir walk log, add cache.add install log"}]},{"version":"1.0.22","date":"2011-07-25T00:10:51.245Z","changes":[{"date":"2011-07-25T00:10:36.000Z","message":"v1.0.22"},{"date":"2011-07-25T00:10:23.000Z","message":"Exit with the proper code on failure"}]},{"version":"1.0.21","date":"2011-07-25T00:08:05.327Z","changes":[{"date":"2011-07-25T00:07:19.000Z","message":"v1.0.21"},{"date":"2011-07-23T17:29:19.000Z","message":"docs got messed up somehow"},{"date":"2011-07-23T06:44:34.000Z","message":"v1.0.20"},{"date":"2011-07-23T06:44:34.000Z","message":"doa bug, annoying."}]},{"version":"1.0.20","date":"2011-07-23T06:03:24.131Z"},{"version":"1.0.19","date":"2011-07-23T05:41:15.957Z","changes":[{"date":"2011-07-23T05:41:00.000Z","message":"v1.0.19"},{"date":"2011-07-23T05:37:27.000Z","message":"Close #1175 Add --production flag"},{"date":"2011-07-23T05:28:59.000Z","message":"Better checks for proper gid/uid in mkdir"},{"date":"2011-07-23T05:21:32.000Z","message":"Add a bunch of logging and commentary for #1153"},{"date":"2011-07-20T21:38:36.000Z","message":"Update semver to 1.0.9"},{"date":"2011-07-20T09:58:40.000Z","message":"s/sys/util/g finally"},{"date":"2011-07-20T09:53:43.000Z","message":"remove async-map file"},{"date":"2011-07-20T09:48:53.000Z","message":"Use asyncMap from slide module"},{"date":"2011-07-20T09:43:40.000Z","message":"Use chain function from slide module"},{"date":"2011-07-20T09:43:05.000Z","message":"Add slide as dep"},{"date":"2011-07-20T08:58:33.000Z","message":"Abstract out graceful-fs"},{"date":"2011-07-20T08:21:49.000Z","message":"Add Felix Geisendörfer"},{"date":"2011-07-20T08:19:07.000Z","message":"Add tildes for >=0.1.0, not 1.0.0"},{"date":"2011-07-20T08:18:08.000Z","message":"Only use tilde range descriptor when package >=1.0\n\nProblem: When using `install --save`, npm prefixed the installed\npackage version with the tilde range descriptor. This makes sense\nfor packages that follow semver and have reached 1.0.0. But for\npackages < 1.0.0 semver allows APIs to change freely, so those\nshould be packaged with the exact version that was installed,\nas implemented by this patch."},{"date":"2011-07-20T08:17:00.000Z","message":"--save to devDependencies when --dev is set"},{"date":"2011-07-20T03:52:49.000Z","message":"Clear caches on DELETE better."},{"date":"2011-07-20T03:52:32.000Z","message":"Don't scrub the cache on publish. Unnecessary"},{"date":"2011-07-20T02:56:02.000Z","message":"filter out the _etag, and use couch 1.1 'update_after'"},{"date":"2011-07-19T23:35:21.000Z","message":"It is time. Allow https for node >= 0.4.9"},{"date":"2011-07-19T22:53:30.000Z","message":"Add Trent Mick"},{"date":"2011-07-19T22:52:47.000Z","message":"Fix #1163: clean-old.sh breakage on ancient /bin/sh"}]},{"version":"1.0.18","date":"2011-07-19T16:02:34.469Z","changes":[{"date":"2011-07-19T16:02:18.000Z","message":"v1.0.18"},{"date":"2011-07-19T16:00:27.000Z","message":"Print a warning when the search index builds for the first time"},{"date":"2011-07-19T03:05:56.000Z","message":"Make search ridiculously fast.\n\nMad props to @JasonSmith, @janl, @mikeal, and @maxogden for chipping in\nwith various CouchDB skillz and insights.\n\nThis is really awesome."},{"date":"2011-07-18T05:23:55.000Z","message":"Make searches a little faster\n\n1. Even if the data is stale, use it, and then fetch the update.\n2. Tell couch to do the same."},{"date":"2011-07-18T00:37:23.000Z","message":"require.paths is gone"}]},{"version":"1.0.17","date":"2011-07-16T18:08:16.652Z"},{"version":"1.0.16","date":"2011-07-16T09:27:02.808Z"},{"version":"1.0.15","date":"2011-06-25T21:24:07.330Z"},{"version":"1.0.14","date":"2011-06-22T00:09:14.105Z"},{"version":"1.0.13","date":"2011-06-16T00:53:14.966Z"},{"version":"1.0.12","date":"2011-06-15T16:12:00.579Z"},{"version":"1.0.11","date":"2011-06-14T21:13:26.425Z"},{"version":"1.0.10","date":"2011-06-06T15:44:52.842Z"},{"version":"1.0.9-1","date":"2011-06-03T16:34:13.821Z"},{"version":"1.0.9","date":"2011-06-03T00:07:45.362Z"},{"version":"1.0.8","date":"2011-05-31T16:49:16.178Z"},{"version":"1.0.7","date":"2011-05-31T07:17:55.911Z"},{"version":"1.0.6","date":"2011-05-05T02:19:16.362Z"},{"version":"1.0.5","date":"2011-05-03T23:13:44.211Z"},{"version":"1.0.4","date":"2011-05-03T22:35:37.570Z"},{"version":"1.0.3","date":"2011-04-30T22:29:51.690Z"},{"version":"1.0.2","date":"2011-04-30T22:16:42.678Z"},{"version":"1.0.1","date":"2011-04-30T20:07:42.910Z"},{"version":"1.0.1rcFINAL","date":"2011-04-27T21:05:15.890Z"},{"version":"1.0.1rc9","date":"2011-04-15T21:00:22.361Z"},{"version":"1.0.1rc8","date":"2011-04-13T22:23:01.985Z"},{"version":"1.0.1rc7","date":"2011-04-08T17:40:16.457Z"},{"version":"1.0.1rc6","date":"2011-04-06T21:09:31.976Z"},{"version":"1.0.1rc5","date":"2011-03-31T19:17:44.903Z"},{"version":"1.0.1rc4","date":"2011-03-31T01:14:49.678Z"},{"version":"1.0.1rc3","date":"2011-03-31T00:27:24.992Z"},{"version":"1.0.1rc2","date":"2011-03-30T05:48:05.642Z"},{"version":"1.0.1rc1","date":"2011-03-29T15:24:07.396Z"},{"version":"1.0.1rc0","date":"2011-03-28T16:58:53.214Z"},{"version":"1.0.0-2-rc","date":"2011-03-22T01:04:42.861Z"},{"version":"1.0.0-1-rc","date":"2011-03-21T23:28:15.803Z"},{"version":"1.0.0-0-rc","date":"2011-03-21T22:31:24.555Z"},{"version":"1.0.0rc9","date":"2011-03-28T15:43:13.115Z"},{"version":"1.0.0rc8","date":"2011-03-26T00:20:44.945Z"},{"version":"1.0.0rc7","date":"2011-03-24T03:01:57.428Z"},{"version":"1.0.0rc6","date":"2011-03-23T17:22:52.859Z"},{"version":"1.0.0rc5","date":"2011-03-23T16:19:45.853Z"},{"version":"1.0.0rc4","date":"2011-03-23T00:29:33.284Z"},{"version":"1.0.0rc3","date":"2011-03-22T16:18:58.254Z"},{"version":"0.3.18","date":"2011-03-28T16:39:26.441Z"},{"version":"0.3.17","date":"2011-03-21T15:39:52.703Z"},{"version":"0.3.16","date":"2011-03-20T18:33:49.512Z"},{"version":"0.3.15","date":"2011-03-06T17:46:10.383Z"},{"version":"0.3.14","date":"2011-03-04T03:03:53.518Z"},{"version":"0.3.13","date":"2011-03-03T21:03:13.790Z"},{"version":"0.3.12","date":"2011-03-02T01:13:24.313Z"},{"version":"0.3.11","date":"2011-03-01T17:00:22.280Z"},{"version":"0.3.10","date":"2011-03-01T16:57:45.522Z"},{"version":"0.3.9","date":"2011-02-25T01:56:24.400Z"},{"version":"0.3.8-1","date":"2011-02-25T01:27:21.397Z"},{"version":"0.3.8","date":"2011-02-25T01:22:22.601Z"},{"version":"0.3.7-1","date":"2011-02-25T00:53:40.396Z"},{"version":"0.3.7","date":"2011-02-23T02:41:21.117Z"},{"version":"0.3.6","date":"2011-02-23T02:32:16.696Z"},{"version":"0.3.5","date":"2011-02-23T02:07:49.460Z"},{"version":"0.3.4","date":"2011-02-22T06:05:36.661Z"},{"version":"0.3.3","date":"2011-02-19T23:37:02.977Z"},{"version":"0.3.2","date":"2011-02-19T18:19:59.683Z"},{"version":"0.3.1","date":"2011-02-19T06:04:46.712Z"},{"version":"0.3.0-10","date":"2011-02-19T05:03:20.885Z"},{"version":"0.3.0-9","date":"2011-02-18T18:43:23.169Z"},{"version":"0.3.0-8","date":"2011-02-18T00:48:48.142Z"},{"version":"0.3.0-7","date":"2011-02-17T22:01:10.840Z"},{"version":"0.3.0-6","date":"2011-02-17T01:19:37.865Z"},{"version":"0.3.0-5","date":"2011-02-17T00:06:34.726Z"},{"version":"0.3.0-4","date":"2011-02-16T23:24:04.148Z"},{"version":"0.3.0-3","date":"2011-02-16T23:10:15.163Z"},{"version":"0.3.0-2","date":"2011-02-16T22:57:51.784Z"},{"version":"0.3.0","date":"2011-02-16T20:56:46.321Z"},{"version":"0.2.19","date":"2011-03-03T21:05:05.942Z"},{"version":"0.2.18","date":"2011-02-11T00:04:28.019Z"},{"version":"0.2.17","date":"2011-02-01T21:21:23.304Z"},{"version":"0.2.16","date":"2011-01-25T02:12:52.866Z"},{"version":"0.2.15","date":"2011-01-18T01:44:05.106Z"},{"version":"0.2.14-6","date":"2011-01-11T19:08:16.501Z"},{"version":"0.2.14-5","date":"2011-01-10T22:17:46.878Z"},{"version":"0.2.14-4","date":"2011-01-10T18:30:21.692Z"},{"version":"0.2.14-3","date":"2011-01-09T08:00:33.660Z"},{"version":"0.2.14-2","date":"2011-01-07T22:05:27.793Z"},{"version":"0.2.14-1","date":"2011-01-07T17:42:29.337Z"},{"version":"0.2.14","date":"2011-01-07T01:46:00.195Z"},{"version":"0.2.13-3","date":"2010-12-29T22:53:47.500Z"},{"version":"0.2.13-2","date":"2010-12-28T08:24:39.344Z"},{"version":"0.2.13-1","date":"2010-12-27T06:50:02.045Z"},{"version":"0.2.13","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.12-1","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.12","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-6","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-6-a","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-5","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-4","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-3","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-2","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-1","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11","date":"2010-12-23T20:20:53.485Z"}]} +{"project":{"github":"isaacs/npm","repository":"https://github.com/isaacs/npm"},"versions":[{"version":"1.0.27","date":"2011-08-24T16:32:25.054Z","changes":[{"date":"2011-08-24T16:32:07.000Z","message":"v1.0.27"},{"date":"2011-08-24T16:13:43.000Z","message":"isRetry needs to be passed to cacheAddPublish"},{"date":"2011-08-24T15:57:51.000Z","message":"Fixes #1285 Run prepublish *before* adding to cache"},{"date":"2011-08-24T15:22:41.000Z","message":"Fix #1302 Clear out the json cache on unbuild"},{"date":"2011-08-23T21:38:07.000Z","message":"Spit out all usages when --long is set"},{"date":"2011-08-23T21:36:02.000Z","message":"Don't deref undefined command names"},{"date":"2011-08-23T21:35:32.000Z","message":"Allow calling camelCase or css-case for commands"},{"date":"2011-08-23T17:02:07.000Z","message":"Add Conny"},{"date":"2011-08-23T17:01:21.000Z","message":"Avoid git going \"error: RPC failed; result=22, HTTP code = 417\""},{"date":"2011-08-23T16:57:18.000Z","message":"If a non-writable stream is supplied to output, then die horribly"},{"date":"2011-08-23T16:24:00.000Z","message":"Use process.stdout/err if the stdoutFD or stderrFD is supplied"},{"date":"2011-08-23T16:23:38.000Z","message":"Don't swallow exceptions that are not properly loggable\n\nSince a throw due to an ini resolve error or as a result of a\ncallback happening more than once usually indicates some kind of\nearly termination error, it's best to just throw horribly\nin those cases."},{"date":"2011-08-23T15:30:11.000Z","message":"Support using 'node npm.js blah'"},{"date":"2011-08-23T15:07:43.000Z","message":"Close #1299 Don't catch silently"},{"date":"2011-08-23T02:05:40.000Z","message":"Don't make the first arg always an array."},{"date":"2011-08-23T01:09:19.000Z","message":"Ensure that npm.commands functions always called with an args array"},{"date":"2011-08-23T01:09:04.000Z","message":"Call the cb to prefix, root, and bin with the printed value"},{"date":"2011-08-22T22:22:07.000Z","message":"Add user info to 'scripts' helpdoc"},{"date":"2011-08-22T22:20:52.000Z","message":"Fix #1296 Better messaging on bad url configs"},{"date":"2011-08-22T18:00:33.000Z","message":"Add git url info"},{"date":"2011-08-18T15:47:03.000Z","message":"Close #1284 Make EPIPE less noisy"}]},{"version":"1.0.26","date":"2011-08-17T23:55:48.942Z","changes":[{"date":"2011-08-17T23:55:12.000Z","message":"v1.0.26"},{"date":"2011-08-17T23:55:12.000Z","message":"Preserve other members of command functions"},{"date":"2011-08-17T16:38:17.000Z","message":"Friendlier 'npm.install(foo)' for repl poking."},{"date":"2011-08-17T07:50:39.000Z","message":"Fix #1272 Better first-class citizenship for git urls"},{"date":"2011-08-16T18:28:33.000Z","message":"Re #1269 Install into DESTDIR if set"}]},{"version":"1.0.25","date":"2011-08-16T00:55:41.552Z","changes":[{"date":"2011-08-15T15:36:05.000Z","message":"Support removing non-existent users from package manatainer lists"},{"date":"2011-08-15T03:22:04.000Z","message":"Provide default cb if none supplied\n\nMake it much nicer to poke around on the repl. The default\ncallback function just dumps the data or error to stdout\nor stderr."},{"date":"2011-08-14T20:10:46.000Z","message":"v1.0.25"},{"date":"2011-08-14T20:05:26.000Z","message":"Use the non-delta uri for inital search index build"},{"date":"2011-08-14T19:10:43.000Z","message":"Don't set agent:false if http2 is in use"}]},{"version":"1.0.24","date":"2011-08-10T19:58:28.529Z","changes":[{"date":"2011-08-10T19:58:00.000Z","message":"v1.0.24"},{"date":"2011-08-10T19:57:46.000Z","message":"Force exit. Temporary workaround for Linux rimraf timeout issue.\n\nTODO: Fix properly."}]},{"version":"1.0.23","date":"2011-08-07T23:57:08.645Z","changes":[{"date":"2011-08-07T23:56:33.000Z","message":"update which (trivial)"},{"date":"2011-08-07T23:31:30.000Z","message":"debuggery"},{"date":"2011-08-07T23:30:12.000Z","message":"v1.0.23"},{"date":"2011-08-07T19:06:11.000Z","message":"Remove base64 module. Just use the Buffer directly"},{"date":"2011-08-07T18:39:08.000Z","message":".js extensions on require() calls in npm.js"},{"date":"2011-08-07T18:38:03.000Z","message":"Abstract out 'which'"},{"date":"2011-08-07T18:20:55.000Z","message":"make doc"},{"date":"2011-08-07T18:19:36.000Z","message":"Remove minimatch.js, using dep now"},{"date":"2011-08-07T08:46:38.000Z","message":"Handle git+ urls in the name@url case"},{"date":"2011-08-07T08:45:19.000Z","message":"Close #1225 Add git url support. Experimental"},{"date":"2011-08-07T07:10:37.000Z","message":"unbreak ini stuff. no longer using '-' key"},{"date":"2011-08-07T07:06:45.000Z","message":"Use standalone ini parser"},{"date":"2011-08-07T05:06:38.000Z","message":"Add proto-list as dep and submodule"},{"date":"2011-08-07T03:59:26.000Z","message":"update rimraf"},{"date":"2011-08-07T03:55:26.000Z","message":"Allow private per-package confs\n\nJust prefix them with a _. Transparent to the receiving module."},{"date":"2011-08-07T03:40:29.000Z","message":"Use rimraf instead of local thing"},{"date":"2011-08-06T23:52:46.000Z","message":"fixup rimraf"},{"date":"2011-08-06T23:13:59.000Z","message":"Add rimraf submodule"},{"date":"2011-08-06T21:01:45.000Z","message":"make doc"},{"date":"2011-08-06T21:01:41.000Z","message":"minor faq fixes"},{"date":"2011-08-06T20:51:59.000Z","message":"Put .js on filenames"},{"date":"2011-08-06T20:51:52.000Z","message":"Question about Capitalization"},{"date":"2011-08-05T23:20:12.000Z","message":"Close #1235 Swap out unicode tree chars"},{"date":"2011-08-04T23:40:30.000Z","message":"Better error handling for adduser"},{"date":"2011-08-04T04:27:22.000Z","message":"undefined log message error"},{"date":"2011-08-04T02:09:00.000Z","message":"Setting the host there is the wrong thing to do"},{"date":"2011-08-03T22:10:24.000Z","message":"Set host header explicitly"},{"date":"2011-08-03T08:37:44.000Z","message":"Clean up and refactor the oversized npm.load function"},{"date":"2011-08-02T19:34:57.000Z","message":"Close #1214 Don't create an invalid engine range"},{"date":"2011-08-01T21:31:46.000Z","message":"newloctimeout should not be a global."},{"date":"2011-08-01T21:30:47.000Z","message":"Revert \"Check hostkey fingerprints when registry is https\"\n\nThis reverts commit ca52fe6045d6acf37597c66d30b5c2d490b07f79."},{"date":"2011-08-01T05:26:16.000Z","message":"Check hostkey fingerprints when registry is https"},{"date":"2011-08-01T05:20:19.000Z","message":"Add a --yes config flag (with -y and -n shorthands)"},{"date":"2011-07-31T21:21:13.000Z","message":"Fix invalid array length when no search hits found"},{"date":"2011-07-30T16:47:24.000Z","message":"Confusion about args vs conf"},{"date":"2011-07-29T17:07:15.000Z","message":"Report 404 errors properly with non-vhosted registries"},{"date":"2011-07-28T22:42:46.000Z","message":"Closes #1199 Support 'npm unpublish .'"},{"date":"2011-07-28T22:42:20.000Z","message":"Close #1068 Add header to search output"},{"date":"2011-07-28T15:18:15.000Z","message":"Re #1196 Warn on non-array 'files' in json"},{"date":"2011-07-27T20:22:25.000Z","message":"slide@1.1.3"},{"date":"2011-07-27T16:23:24.000Z","message":"Support npm_debug env in install script"},{"date":"2011-07-26T22:15:54.000Z","message":"Default prefix to PREFIX environ if set"},{"date":"2011-07-26T22:14:56.000Z","message":"No need to clean cache as often, makes search slow"},{"date":"2011-07-26T22:13:26.000Z","message":"Clearer messaging of cleanup prefix"},{"date":"2011-07-26T22:13:07.000Z","message":"Prefer https:// to git:// for github urls"},{"date":"2011-07-26T18:53:32.000Z","message":"Close #1187 Use https:// for submodules instead of git://"},{"date":"2011-07-25T20:26:12.000Z","message":"Remove mkdir walk log, add cache.add install log"}]},{"version":"1.0.22","date":"2011-07-25T00:10:51.245Z","changes":[{"date":"2011-07-25T00:10:36.000Z","message":"v1.0.22"},{"date":"2011-07-25T00:10:23.000Z","message":"Exit with the proper code on failure"}]},{"version":"1.0.21","date":"2011-07-25T00:08:05.327Z","changes":[{"date":"2011-07-25T00:07:19.000Z","message":"v1.0.21"},{"date":"2011-07-23T17:29:19.000Z","message":"docs got messed up somehow"},{"date":"2011-07-23T06:44:34.000Z","message":"v1.0.20"},{"date":"2011-07-23T06:44:34.000Z","message":"doa bug, annoying."}]},{"version":"1.0.20","date":"2011-07-23T06:03:24.131Z"},{"version":"1.0.19","date":"2011-07-23T05:41:15.957Z","changes":[{"date":"2011-07-23T05:41:00.000Z","message":"v1.0.19"},{"date":"2011-07-23T05:37:27.000Z","message":"Close #1175 Add --production flag"},{"date":"2011-07-23T05:28:59.000Z","message":"Better checks for proper gid/uid in mkdir"},{"date":"2011-07-23T05:21:32.000Z","message":"Add a bunch of logging and commentary for #1153"},{"date":"2011-07-20T21:38:36.000Z","message":"Update semver to 1.0.9"},{"date":"2011-07-20T09:58:40.000Z","message":"s/sys/util/g finally"},{"date":"2011-07-20T09:53:43.000Z","message":"remove async-map file"},{"date":"2011-07-20T09:48:53.000Z","message":"Use asyncMap from slide module"},{"date":"2011-07-20T09:43:40.000Z","message":"Use chain function from slide module"},{"date":"2011-07-20T09:43:05.000Z","message":"Add slide as dep"},{"date":"2011-07-20T08:58:33.000Z","message":"Abstract out graceful-fs"},{"date":"2011-07-20T08:21:49.000Z","message":"Add Felix Geisendörfer"},{"date":"2011-07-20T08:19:07.000Z","message":"Add tildes for >=0.1.0, not 1.0.0"},{"date":"2011-07-20T08:18:08.000Z","message":"Only use tilde range descriptor when package >=1.0\n\nProblem: When using `install --save`, npm prefixed the installed\npackage version with the tilde range descriptor. This makes sense\nfor packages that follow semver and have reached 1.0.0. But for\npackages < 1.0.0 semver allows APIs to change freely, so those\nshould be packaged with the exact version that was installed,\nas implemented by this patch."}]},{"version":"1.0.18","date":"2011-07-19T16:02:34.469Z"},{"version":"1.0.17","date":"2011-07-16T18:08:16.652Z"},{"version":"1.0.16","date":"2011-07-16T09:27:02.808Z"},{"version":"1.0.15","date":"2011-06-25T21:24:07.330Z"},{"version":"1.0.14","date":"2011-06-22T00:09:14.105Z"},{"version":"1.0.13","date":"2011-06-16T00:53:14.966Z"},{"version":"1.0.12","date":"2011-06-15T16:12:00.579Z"},{"version":"1.0.11","date":"2011-06-14T21:13:26.425Z"},{"version":"1.0.10","date":"2011-06-06T15:44:52.842Z"},{"version":"1.0.9-1","date":"2011-06-03T16:34:13.821Z"},{"version":"1.0.9","date":"2011-06-03T00:07:45.362Z"},{"version":"1.0.8","date":"2011-05-31T16:49:16.178Z"},{"version":"1.0.7","date":"2011-05-31T07:17:55.911Z"},{"version":"1.0.6","date":"2011-05-05T02:19:16.362Z"},{"version":"1.0.5","date":"2011-05-03T23:13:44.211Z"},{"version":"1.0.4","date":"2011-05-03T22:35:37.570Z"},{"version":"1.0.3","date":"2011-04-30T22:29:51.690Z"},{"version":"1.0.2","date":"2011-04-30T22:16:42.678Z"},{"version":"1.0.1","date":"2011-04-30T20:07:42.910Z"},{"version":"1.0.1rcFINAL","date":"2011-04-27T21:05:15.890Z"},{"version":"1.0.1rc9","date":"2011-04-15T21:00:22.361Z"},{"version":"1.0.1rc8","date":"2011-04-13T22:23:01.985Z"},{"version":"1.0.1rc7","date":"2011-04-08T17:40:16.457Z"},{"version":"1.0.1rc6","date":"2011-04-06T21:09:31.976Z"},{"version":"1.0.1rc5","date":"2011-03-31T19:17:44.903Z"},{"version":"1.0.1rc4","date":"2011-03-31T01:14:49.678Z"},{"version":"1.0.1rc3","date":"2011-03-31T00:27:24.992Z"},{"version":"1.0.1rc2","date":"2011-03-30T05:48:05.642Z"},{"version":"1.0.1rc1","date":"2011-03-29T15:24:07.396Z"},{"version":"1.0.1rc0","date":"2011-03-28T16:58:53.214Z"},{"version":"1.0.0-2-rc","date":"2011-03-22T01:04:42.861Z"},{"version":"1.0.0-1-rc","date":"2011-03-21T23:28:15.803Z"},{"version":"1.0.0-0-rc","date":"2011-03-21T22:31:24.555Z"},{"version":"1.0.0rc9","date":"2011-03-28T15:43:13.115Z"},{"version":"1.0.0rc8","date":"2011-03-26T00:20:44.945Z"},{"version":"1.0.0rc7","date":"2011-03-24T03:01:57.428Z"},{"version":"1.0.0rc6","date":"2011-03-23T17:22:52.859Z"},{"version":"1.0.0rc5","date":"2011-03-23T16:19:45.853Z"},{"version":"1.0.0rc4","date":"2011-03-23T00:29:33.284Z"},{"version":"1.0.0rc3","date":"2011-03-22T16:18:58.254Z"},{"version":"0.3.18","date":"2011-03-28T16:39:26.441Z"},{"version":"0.3.17","date":"2011-03-21T15:39:52.703Z"},{"version":"0.3.16","date":"2011-03-20T18:33:49.512Z"},{"version":"0.3.15","date":"2011-03-06T17:46:10.383Z"},{"version":"0.3.14","date":"2011-03-04T03:03:53.518Z"},{"version":"0.3.13","date":"2011-03-03T21:03:13.790Z"},{"version":"0.3.12","date":"2011-03-02T01:13:24.313Z"},{"version":"0.3.11","date":"2011-03-01T17:00:22.280Z"},{"version":"0.3.10","date":"2011-03-01T16:57:45.522Z"},{"version":"0.3.9","date":"2011-02-25T01:56:24.400Z"},{"version":"0.3.8-1","date":"2011-02-25T01:27:21.397Z"},{"version":"0.3.8","date":"2011-02-25T01:22:22.601Z"},{"version":"0.3.7-1","date":"2011-02-25T00:53:40.396Z"},{"version":"0.3.7","date":"2011-02-23T02:41:21.117Z"},{"version":"0.3.6","date":"2011-02-23T02:32:16.696Z"},{"version":"0.3.5","date":"2011-02-23T02:07:49.460Z"},{"version":"0.3.4","date":"2011-02-22T06:05:36.661Z"},{"version":"0.3.3","date":"2011-02-19T23:37:02.977Z"},{"version":"0.3.2","date":"2011-02-19T18:19:59.683Z"},{"version":"0.3.1","date":"2011-02-19T06:04:46.712Z"},{"version":"0.3.0-10","date":"2011-02-19T05:03:20.885Z"},{"version":"0.3.0-9","date":"2011-02-18T18:43:23.169Z"},{"version":"0.3.0-8","date":"2011-02-18T00:48:48.142Z"},{"version":"0.3.0-7","date":"2011-02-17T22:01:10.840Z"},{"version":"0.3.0-6","date":"2011-02-17T01:19:37.865Z"},{"version":"0.3.0-5","date":"2011-02-17T00:06:34.726Z"},{"version":"0.3.0-4","date":"2011-02-16T23:24:04.148Z"},{"version":"0.3.0-3","date":"2011-02-16T23:10:15.163Z"},{"version":"0.3.0-2","date":"2011-02-16T22:57:51.784Z"},{"version":"0.3.0","date":"2011-02-16T20:56:46.321Z"},{"version":"0.2.19","date":"2011-03-03T21:05:05.942Z"},{"version":"0.2.18","date":"2011-02-11T00:04:28.019Z"},{"version":"0.2.17","date":"2011-02-01T21:21:23.304Z"},{"version":"0.2.16","date":"2011-01-25T02:12:52.866Z"},{"version":"0.2.15","date":"2011-01-18T01:44:05.106Z"},{"version":"0.2.14-6","date":"2011-01-11T19:08:16.501Z"},{"version":"0.2.14-5","date":"2011-01-10T22:17:46.878Z"},{"version":"0.2.14-4","date":"2011-01-10T18:30:21.692Z"},{"version":"0.2.14-3","date":"2011-01-09T08:00:33.660Z"},{"version":"0.2.14-2","date":"2011-01-07T22:05:27.793Z"},{"version":"0.2.14-1","date":"2011-01-07T17:42:29.337Z"},{"version":"0.2.14","date":"2011-01-07T01:46:00.195Z"},{"version":"0.2.13-3","date":"2010-12-29T22:53:47.500Z"},{"version":"0.2.13-2","date":"2010-12-28T08:24:39.344Z"},{"version":"0.2.13-1","date":"2010-12-27T06:50:02.045Z"},{"version":"0.2.13","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.12-1","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.12","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-6","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-6-a","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-5","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-4","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-3","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-2","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11-1","date":"2010-12-23T20:20:53.485Z"},{"version":"0.2.11","date":"2010-12-23T20:20:53.485Z"}]} diff --git a/examples/npm.markdown b/examples/npm.markdown index e85f736..774dcb4 100644 --- a/examples/npm.markdown +++ b/examples/npm.markdown @@ -1,6 +1,23 @@ -Upcoming / 2011-08-23 -===================== +1.0.27 / 2011-08-24 +=================== + * v1.0.27 + * isRetry needs to be passed to cacheAddPublish + * Fixes [#1285](https://github.com/isaacs/npm/issues/1285) Run prepublish *before* adding to + cache + * Fix [#1302](https://github.com/isaacs/npm/issues/1302) Clear out the json cache on unbuild + * Spit out all usages when --long is set + * Don't deref undefined command names + * Allow calling camelCase or css-case for commands + * Add Conny + * Avoid git going "error: RPC failed; result=22, HTTP code = 417" + * If a non-writable stream is supplied to output, then die horribly + * Use process.stdout/err if the stdoutFD or stderrFD is supplied + * Don't swallow exceptions that are not properly loggable + Since a throw due to an ini resolve error or as a result of a + callback happening more than once usually indicates some kind of + early termination error, it's best to just throw horribly + in those cases. * Support using 'node npm.js blah' * Close [#1299](https://github.com/isaacs/npm/issues/1299) Don't catch silently * Don't make the first arg always an array. @@ -71,8 +88,7 @@ Upcoming / 2011-08-23 * Setting the host there is the wrong thing to do * Set host header explicitly * Clean up and refactor the oversized npm.load function - * Close [#1214](https://github.com/isaacs/npm/issues/1214) Don't create an invalid engine - range + * Close [#1214](https://github.com/isaacs/npm/issues/1214) Don't create an invalid engine range * newloctimeout should not be a global. * Revert "Check hostkey fingerprints when registry is https" This reverts commit ca52fe6045d6acf37597c66d30b5c2d490b07f79. @@ -90,8 +106,8 @@ Upcoming / 2011-08-23 * No need to clean cache as often, makes search slow * Clearer messaging of cleanup prefix * Prefer https:// to git:// for github urls - * Close [#1187](https://github.com/isaacs/npm/issues/1187) Use https:// for submodules - instead of git:// + * Close [#1187](https://github.com/isaacs/npm/issues/1187) Use https:// for submodules instead + of git:// * Remove mkdir walk log, add cache.add install log 1.0.22 / 2011-07-24 @@ -114,8 +130,7 @@ Upcoming / 2011-08-23 * v1.0.19 * Close [#1175](https://github.com/isaacs/npm/issues/1175) Add --production flag * Better checks for proper gid/uid in mkdir - * Add a bunch of logging and commentary for - [#1153](https://github.com/isaacs/npm/issues/1153) + * Add a bunch of logging and commentary for [#1153](https://github.com/isaacs/npm/issues/1153) * Update semver to 1.0.9 * s/sys/util/g finally * remove async-map file @@ -132,25 +147,3 @@ Upcoming / 2011-08-23 packages < 1.0.0 semver allows APIs to change freely, so those should be packaged with the exact version that was installed, as implemented by this patch. - * --save to devDependencies when --dev is set - * Clear caches on DELETE better. - * Don't scrub the cache on publish. Unnecessary - * filter out the _etag, and use couch 1.1 'update_after' - * It is time. Allow https for node >= 0.4.9 - * Add Trent Mick - * Fix [#1163](https://github.com/isaacs/npm/issues/1163): clean-old.sh breakage on ancient - /bin/sh - -1.0.18 / 2011-07-19 -=================== - - * v1.0.18 - * Print a warning when the search index builds for the first time - * Make search ridiculously fast. - Mad props to @JasonSmith, @janl, @mikeal, and @maxogden for chipping in - with various CouchDB skillz and insights. - This is really awesome. - * Make searches a little faster - 1. Even if the data is stale, use it, and then fetch the update. - 2. Tell couch to do the same. - * require.paths is gone diff --git a/examples/twitter-bootstrap.markdown b/examples/twitter-bootstrap.markdown index 857cbe3..75218d9 100644 --- a/examples/twitter-bootstrap.markdown +++ b/examples/twitter-bootstrap.markdown @@ -1,6 +1,11 @@ 2011-08-23 ========== + * Merge pull request [#71](https://github.com/twitter/bootstrap/issues/71) from + DHS/fix-select-labels + Fixed empty for fields on select labels in documentation + * Fixed empty for fields on select labels + Also added id fields to selects where needed * add delete button + give .btn cursor:pointer * comment out button method with // so less doesn't compile it into source * append checkbox to password input [#36](https://github.com/twitter/bootstrap/issues/36) @@ -22,8 +27,8 @@ Fixed syntax error in patterns.less * Merge pull request [#58](https://github.com/twitter/bootstrap/issues/58) from sankage/master - fixed [#10](https://github.com/twitter/bootstrap/issues/10): color-stop() function - removed, @colorStop fixed for moz to be unitless + fixed [#10](https://github.com/twitter/bootstrap/issues/10): color-stop() function removed, + @colorStop fixed for moz to be unitless * changed @colorStop to be unitless * fixed color-stop for opera, ie10, w3c, new webkit * Fixed a syntax error preventing less compilation with dotless @@ -100,7 +105,7 @@ * try only -ms-filter * blah * just disable filter - * add [#](https://github.com/twitter/bootstrap/issues/) to color + * add # to color * ie8 dropdown tweaks * ie Xp * more debugging of ie nav display issues @@ -123,11 +128,7 @@ * merging in misc fixes to docs and css from other branch * updated compiled css - * updated docs to fix inconsistent display of code elements, update scaffolding to fix - padding issue on fluid containers, add placeholder hero unit in patterns for future use, - continue to refactor some rgba to hex values + * updated docs to fix inconsistent display of code elements, update scaffolding to fix padding + issue on fluid containers, add placeholder hero unit in patterns for future use, continue to + refactor some rgba to hex values * Fix broken quotes and bizarre update of HTML5 to 6. - * Corrected semantic definitions of strong, em and b in Typography section. - * Merge pull request [#21](https://github.com/twitter/bootstrap/issues/21) from - dliuzzi/patch-1 - Fixed a couple of missing parentheses. diff --git a/package.json b/package.json index f34a292..809f8db 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "changelog", - "version": "0.1.0", + "version": "0.1.1", "description": "Changelog is a command line utility (and module) that generates a changelog in markdown, json, or color output for modules in npmjs.org's registry as well as any public github.com repo.", "keywords": [ "changes", "history", "what's new", "change set" ], "preferGlobal": true,