Skip to content

Commit

Permalink
0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed May 1, 2019
1 parent f090e96 commit 53026a2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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`.
Expand Down
46 changes: 23 additions & 23 deletions 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",
Expand All @@ -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"
}
}

0 comments on commit 53026a2

Please sign in to comment.