Skip to content

Commit 53026a2

Browse files
committed
0.12.0
1 parent f090e96 commit 53026a2

File tree

2 files changed

+27
-24
lines changed

2 files changed

+27
-24
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 0.12.0
8+
* Add `util.types`. ([@lukechilds](https://github.com/lukechilds) in [#32](https://github.com/browserify/node-util/pull/35))
9+
710
## 0.11.1
8-
* 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))
11+
* 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))
912

1013
## 0.11.0
1114
* Add `util.promisify`.

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,13 @@
11
{
2+
"name": "util",
3+
"description": "Node.js's util module for all engines",
4+
"version": "0.12.0",
25
"author": {
36
"name": "Joyent",
47
"url": "http://www.joyent.com"
58
},
6-
"name": "util",
7-
"description": "Node.JS util module",
8-
"keywords": [
9-
"util"
10-
],
11-
"version": "0.11.1",
12-
"homepage": "https://github.com/browserify/node-util",
13-
"repository": {
14-
"type": "git",
15-
"url": "git://github.com/browserify/node-util"
16-
},
17-
"main": "./util.js",
18-
"files": [
19-
"util.js",
20-
"support"
21-
],
22-
"scripts": {
23-
"test": "node test/node/index.js",
24-
"test:browsers": "airtap test/browser/index.js",
25-
"test:browsers:local": "npm run test:browsers -- --local"
9+
"browser": {
10+
"./support/isBuffer.js": "./support/isBufferBrowser.js"
2611
},
2712
"dependencies": {
2813
"inherits": "2.0.3",
@@ -31,14 +16,29 @@
3116
"object.entries": "^1.1.0",
3217
"safe-buffer": "^5.1.2"
3318
},
34-
"license": "MIT",
3519
"devDependencies": {
3620
"airtap": "~1.0.0",
3721
"is-async-supported": "~1.2.0",
3822
"run-series": "~1.1.4",
3923
"tape": "~4.9.0"
4024
},
41-
"browser": {
42-
"./support/isBuffer.js": "./support/isBufferBrowser.js"
25+
"files": [
26+
"util.js",
27+
"support"
28+
],
29+
"homepage": "https://github.com/browserify/node-util",
30+
"keywords": [
31+
"util"
32+
],
33+
"license": "MIT",
34+
"main": "./util.js",
35+
"repository": {
36+
"type": "git",
37+
"url": "git://github.com/browserify/node-util"
38+
},
39+
"scripts": {
40+
"test": "node test/node/index.js",
41+
"test:browsers": "airtap test/browser/index.js",
42+
"test:browsers:local": "npm run test:browsers -- --local"
4343
}
4444
}

0 commit comments

Comments
 (0)