Skip to content

Commit f7d80a9

Browse files
author
David Pacheco
committed
#21 Update verror dep
#22 Update extsprintf dependency #23 update contribution guidelines Reviewed by: Richard Kiene <richard.kiene@joyent.com> Approved by: Richard Kiene <richard.kiene@joyent.com>
1 parent 6ea6cb4 commit f7d80a9

File tree

4 files changed

+29
-9
lines changed

4 files changed

+29
-9
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
None yet.
66

7+
## v1.4.1 (2017-08-02)
8+
9+
* #21 Update verror dep
10+
* #22 Update extsprintf dependency
11+
* #23 update contribution guidelines
12+
713
## v1.4.0 (2017-03-13)
814

915
* #7 Add parseInteger() function for safer number parsing

CONTRIBUTING.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Contributing
2+
3+
This repository uses [cr.joyent.us](https://cr.joyent.us) (Gerrit) for new
4+
changes. Anyone can submit changes. To get started, see the [cr.joyent.us user
5+
guide](https://github.com/joyent/joyent-gerrit/blob/master/docs/user/README.md).
6+
This repo does not use GitHub pull requests.
7+
8+
See the [Joyent Engineering
9+
Guidelines](https://github.com/joyent/eng/blob/master/docs/index.md) for general
10+
best practices expected in this repository.
11+
12+
Contributions should be "make prepush" clean. The "prepush" target runs the
13+
"check" target, which requires these separate tools:
14+
15+
* https://github.com/davepacheco/jsstyle
16+
* https://github.com/davepacheco/javascriptlint
17+
18+
If you're changing something non-trivial or user-facing, you may want to submit
19+
an issue first.

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -284,9 +284,4 @@ returns:
284284

285285
# Contributing
286286

287-
Code should be "make check" clean. This target assumes that
288-
[jsl](http://github.com/davepacheco/javascriptlint) and
289-
[jsstyle](http://github.com/davepacheco/jsstyle) are on your path.
290-
291-
New tests should generally accompany new functions and bug fixes. The tests
292-
should pass cleanly (run tests/basic.js).
287+
See separate [contribution guidelines](CONTRIBUTING.md).

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsprim",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "utilities for primitive JavaScript types",
55
"main": "./lib/jsprim.js",
66
"repository": {
@@ -9,9 +9,9 @@
99
},
1010
"dependencies": {
1111
"assert-plus": "1.0.0",
12-
"extsprintf": "1.0.2",
12+
"extsprintf": "1.3.0",
1313
"json-schema": "0.2.3",
14-
"verror": "1.3.6"
14+
"verror": "1.10.0"
1515
},
1616
"engines": [
1717
"node >=0.6.0"

0 commit comments

Comments
 (0)