Skip to content

Commit cc4b7cb

Browse files
committed
fixes #93
1 parent 1ebfc24 commit cc4b7cb

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Breaking changes are documented using GitHub issues, see [issues labeled "release notes"](https://github.com/hapijs/confidence/issues?q=is%3Aissue+label%3A%22release+notes%22).
1+
Breaking changes are documented using GitHub issues, see [issues labeled "release notes"](https://github.com/hapipal/confidence/issues?q=is%3Aissue+label%3A%22release+notes%22).
22

3-
If you want changes of a specific minor or patch release, you can browse the [GitHub milestones](https://github.com/hapijs/confidence/milestones?state=closed&direction=asc&sort=due_date).
3+
If you want changes of a specific minor or patch release, you can browse the [GitHub milestones](https://github.com/hapipal/confidence/milestones?state=closed&direction=asc&sort=due_date).

CONTRIBUTING.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
Please view our [hapijs discussion forum](https://github.com/hapijs/discuss).
1+
# How to contribute
2+
We welcome contributions and are pleased to have them. Please follow this guide when logging issues or making code changes.
3+
4+
## Logging Issues
5+
All issues should be created using the [new issue form](https://github.com/hapipal/confidence/issues/new). Clearly describe the issue including steps
6+
to reproduce if there are any. Also, make sure to indicate the earliest version that has the issue being reported.
7+
8+
## Patching Code
9+
10+
Code changes are welcome and should follow the guidelines below.
11+
12+
* Fork the repository on GitHub.
13+
* Fix the issue ensuring that your code follows the [hapi style guide](https://github.com/outmoded/hapi-contrib/blob/master/Style.md).
14+
* Add tests for your new code ensuring that you have 100% code coverage (we can help you reach 100% but will not merge without it).
15+
* Run `npm test` to generate a report of test coverage and linting results.
16+
* [Pull requests](http://help.github.com/send-pull-requests/) should be made to the [master branch](https://github.com/hapipal/confidence/tree/master) or in certain special cases, the branch for a relevant [milestone](https://github.com/hapipal/confidence/milestones).

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
![confidence Logo](https://raw.githubusercontent.com/hapijs/confidence/master/images/confidence.png)
1+
![confidence Logo](https://raw.githubusercontent.com/hapipal/confidence/master/images/confidence.png)
22

33
**Confidence** is a configuration document format, an API, and a foundation for A/B testing. The configuration format is designed to
44
work with any existing JSON-based configuration, serving values based on object path (`'/a/b/c'` translates to ``a.b.c``). In addition,
55
**confidence** defines special $-prefixed keys used to filter values for a given criteria.
66

77
Version 4.x only supports node v8.9.0 and over. For older version of node please use version 3.x.
88

9-
[![Build Status](https://travis-ci.org/hapijs/confidence.svg?branch=master)](https://travis-ci.org/hapijs/confidence)
9+
[![Build Status](https://travis-ci.org/hapipal/confidence.svg?branch=master)](https://travis-ci.org/hapipal/confidence)
1010

1111
Lead Maintainer: [Sunny Bhanot](https://github.com/augnin)
1212

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "confidence",
33
"description": "Configuration API",
4-
"version": "4.0.1",
5-
"repository": "git://github.com/hapijs/confidence",
4+
"version": "4.0.2",
5+
"repository": "git://github.com/hapipal/confidence",
66
"main": "lib/index.js",
77
"keywords": [
88
"hapi",
@@ -13,12 +13,12 @@
1313
"dependencies": {
1414
"alce": "1.x.x",
1515
"@hapi/hoek": "6.x.x",
16-
"@hapi/joi": "14.x.x",
17-
"yargs": "12.x.x"
16+
"@hapi/joi": "15.x.x",
17+
"yargs": "13.x.x"
1818
},
1919
"devDependencies": {
2020
"@hapi/code": "5.x.x",
21-
"@hapi/lab": "18.x.x"
21+
"@hapi/lab": "19.x.x"
2222
},
2323
"bin": {
2424
"confidence": "bin/confidence"

0 commit comments

Comments
 (0)