Skip to content

Commit b9b4bdb

Browse files
dblockdbwiddis
authored andcommitted
s/dblock/oshi/g (oshi#880)
1 parent be0f13a commit b9b4bdb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Contributing to Oshi
22
=====================
33

4-
Oshi is work of [many contributors](https://github.com/dblock/oshi/graphs/contributors). You're encouraged to submit [pull requests](https://github.com/dblock/oshi/pulls), [propose features and discuss issues](https://github.com/dblock/oshi/issues).
4+
Oshi is work of [many contributors](https://github.com/oshi/oshi/graphs/contributors). You're encouraged to submit [pull requests](https://github.com/oshi/oshi/pulls), [propose features and discuss issues](https://github.com/oshi/oshi/issues).
55

66
#### Fork the Project
77

8-
Fork the [project on Github](https://github.com/dblock/oshi) and check out your copy.
8+
Fork the [project on Github](https://github.com/oshi/oshi) and check out your copy.
99

1010
```
1111
git clone https://github.com/contributor/oshi.git
1212
cd oshi
13-
git remote add upstream https://github.com/dblock/oshi.git
13+
git remote add upstream https://github.com/oshi/oshi.git
1414
```
1515

1616
#### Create a Topic Branch
@@ -92,7 +92,7 @@ git push origin my-feature-branch -f
9292
Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows.
9393

9494
```
95-
* [#123](https://github.com/dblock/oshi/pull/123): Reticulated splines - [@contributor](https://github.com/contributor).
95+
* [#123](https://github.com/oshi/oshi/pull/123): Reticulated splines - [@contributor](https://github.com/contributor).
9696
```
9797

9898
Amend your previous commit and force push the changes.

FAQ.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
What is the intended use of the API?
22
========
3-
Users should create a new instance of [SystemInfo](http://dblock.github.io/oshi/apidocs/oshi/SystemInfo.html). This provides access to the platform-specific hardware and software interfaces using the respective `get*()` methods. The interfaces in `oshi.hardware` and `oshi.software.os` provide cross-platform functionality. See the `main()` method of [SystemInfoTest](https://github.com/dblock/oshi/blob/master/oshi-core/src/test/java/oshi/SystemInfoTest.java) for sample code.
3+
Users should create a new instance of [SystemInfo](http://dblock.github.io/oshi/apidocs/oshi/SystemInfo.html). This provides access to the platform-specific hardware and software interfaces using the respective `get*()` methods. The interfaces in `oshi.hardware` and `oshi.software.os` provide cross-platform functionality. See the `main()` method of [SystemInfoTest](https://github.com/oshi/oshi/blob/master/oshi-core/src/test/java/oshi/SystemInfoTest.java) for sample code.
44

55
Methods return a "snapshot" of current levels. To display values which change over time, it is intended that users poll for information no more frequently than one second. Disk and file system calls may incur some latency and should be polled less frequently. OSHI 4.X will overhaul this behavior; see the [UPGRADING.md](UPGRADING.md) document for more details.
66

RELEASING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Releasing OSHI
1212

1313
### Prepare
1414

15-
* Make sure tests are green on [Travis CI](https://travis-ci.org/dblock/oshi).
16-
* Review [SonarQube](https://sonarqube.com/overview?id=com.github.dblock%3Aoshi-parent) for any bugs.
15+
* Make sure tests are green on [Travis CI](https://travis-ci.org/oshi/oshi).
16+
* Review [SonarQube](https://sonarcloud.io/dashboard?id=com.github.oshi%3Aoshi-parent) for any bugs.
1717
* Run `mvn clean test` on every OS you have access to
1818
* Choose an appropriate [version number](http://semver.org/) for the release
1919
* Proactively change version numbers in the download links on [README.md](README.md).
@@ -38,10 +38,10 @@ Releasing OSHI
3838
* `mvn release:perform`
3939
* Takes a few minutes.
4040
* This pushes the release to the [Nexus](https://oss.sonatype.org/) staging repository
41-
* This also pushes to [gh_pages](https://dblock.github.io/oshi)
41+
* This also pushes to [gh_pages](https://oshi.github.io/oshi)
4242
* Log on to [Nexus](https://oss.sonatype.org/) and [release the deployment from OSSRH to the Central Repository](http://central.sonatype.org/pages/releasing-the-deployment.html).
4343

44-
* Add a title and release notes [to the tag](https://github.com/dblock/oshi/tags) on GitHub and publish the release to make it current.
44+
* Add a title and release notes [to the tag](https://github.com/oshi/oshi/tags) on GitHub and publish the release to make it current.
4545

4646
* As development progresses, update version in [pom.xml](pom.xml) using -SNAPSHOT appended to the new version using [Semantic Versioning](http://semver.org/) standards:
4747
* Increment major version (x.0) for API-breaking changes or additions

0 commit comments

Comments
 (0)