diff --git a/CHANGELOG.md b/CHANGELOG.md index b8a9b32..debd6e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 0.12.0 +* Add `util.types`. ([@lukechilds](https://github.com/lukechilds) in [#32](https://github.com/browserify/node-util/pull/35)) + ## 0.11.1 -* Fix an infinite loop in `util.deprecate` some build configurations. ([@bernardmcmanus](https://github.com/bernardmcmanus) in [#12](https://github.com/goto-bus-stop/node-util/pull/12)) +* Fix an infinite loop in `util.deprecate` some build configurations. ([@bernardmcmanus](https://github.com/bernardmcmanus) in [#12](https://github.com/browserify/node-util/pull/12)) ## 0.11.0 * Add `util.promisify`. diff --git a/package.json b/package.json index ad7cf51..0cf4aab 100644 --- a/package.json +++ b/package.json @@ -1,28 +1,13 @@ { + "name": "util", + "description": "Node.js's util module for all engines", + "version": "0.12.0", "author": { "name": "Joyent", "url": "http://www.joyent.com" }, - "name": "util", - "description": "Node.JS util module", - "keywords": [ - "util" - ], - "version": "0.11.1", - "homepage": "https://github.com/browserify/node-util", - "repository": { - "type": "git", - "url": "git://github.com/browserify/node-util" - }, - "main": "./util.js", - "files": [ - "util.js", - "support" - ], - "scripts": { - "test": "node test/node/index.js", - "test:browsers": "airtap test/browser/index.js", - "test:browsers:local": "npm run test:browsers -- --local" + "browser": { + "./support/isBuffer.js": "./support/isBufferBrowser.js" }, "dependencies": { "inherits": "2.0.3", @@ -31,14 +16,29 @@ "object.entries": "^1.1.0", "safe-buffer": "^5.1.2" }, - "license": "MIT", "devDependencies": { "airtap": "~1.0.0", "is-async-supported": "~1.2.0", "run-series": "~1.1.4", "tape": "~4.9.0" }, - "browser": { - "./support/isBuffer.js": "./support/isBufferBrowser.js" + "files": [ + "util.js", + "support" + ], + "homepage": "https://github.com/browserify/node-util", + "keywords": [ + "util" + ], + "license": "MIT", + "main": "./util.js", + "repository": { + "type": "git", + "url": "git://github.com/browserify/node-util" + }, + "scripts": { + "test": "node test/node/index.js", + "test:browsers": "airtap test/browser/index.js", + "test:browsers:local": "npm run test:browsers -- --local" } }