Skip to content

Commit e79dc64

Browse files
committed
Merge branch 'rename-openzeppelin-solidity'
2 parents 0e5799c + 9c26257 commit e79dc64

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@ We really appreciate and value contributions to OpenZeppelin. Please take 5' to
55

66
## Contribution guidelines
77

8-
Smart contracts manage value and are highly vulnerable to errors and attacks. We have very strict guidelines, please make sure to review them: ["Contribution guidelines wiki entry"](https://github.com/OpenZeppelin/zeppelin-solidity/wiki/Contribution-guidelines).
8+
Smart contracts manage value and are highly vulnerable to errors and attacks. We have very strict guidelines, please make sure to review them: ["Contribution guidelines wiki entry"](https://github.com/OpenZeppelin/openzeppelin-solidity/wiki/Contribution-guidelines).
99

1010
## Creating Pull Requests (PRs)
1111

1212
As a contributor, you are expected to fork this repository, work on your own fork and then submit pull requests. The pull requests will be reviewed and eventually merged into the main repo. See ["Fork-a-Repo"](https://help.github.com/articles/fork-a-repo/) for how this works.
1313

1414
*IMPORTANT*
15-
* Please see ["Git flow wiki entry"](https://github.com/OpenZeppelin/zeppelin-solidity/wiki/Git-flow) for understanding how to use branches in this repository.
15+
* Please see ["Git flow wiki entry"](https://github.com/OpenZeppelin/openzeppelin-solidity/wiki/Git-flow) for understanding how to use branches in this repository.
1616

1717
## A typical workflow
1818

1919
1) Make sure your fork is up to date with the main repository:
2020

2121
```
22-
cd zeppelin-solidity
22+
cd openzeppelin-solidity
2323
git fetch upstream
2424
git checkout development
2525
git pull --rebase upstream development
2626
```
27-
NOTE: The directory `zeppelin-solidity` represents your fork's local copy.
27+
NOTE: The directory `openzeppelin-solidity` represents your fork's local copy.
2828

2929
2) Branch out from `development` into `fix/some-bug-#123`:
3030
(Postfixing #123 will associate your PR with the issue #123 and make everyone's life easier =D)
@@ -40,7 +40,7 @@ git commit "Fix some bug #123"
4040
git push origin fix/some-bug-#123
4141
```
4242

43-
4) Go to [github.com/OpenZeppelin/zeppelin-solidity](https://github.com/OpenZeppelin/zeppelin-solidity) in your web browser and issue a new pull request.
43+
4) Go to [github.com/OpenZeppelin/openzeppelin-solidity](https://github.com/OpenZeppelin/zeppelin-solidity) in your web browser and issue a new pull request.
4444

4545
*IMPORTANT* Read the PR template very carefully and make sure to follow all the instructions. These instructions
4646
refer to some very important conditions that your PR must meet in order to be accepted, such as making sure that all tests pass, JS linting tests pass, solidity linting tests pass, etc.
@@ -51,8 +51,8 @@ refer to some very important conditions that your PR must meet in order to be ac
5151

5252
## All set!
5353

54-
If you have any questions feel free to post them to github.com/OpenZeppelin/zeppelin-solidity/issues.
54+
If you have any questions feel free to post them to github.com/OpenZeppelin/openzeppelin-solidity/issues.
5555

56-
Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/zeppelin-solidity/labels/good%20first%20issue).
56+
Finally, if you're looking to collaborate and want to find easy tasks to start, look at the issues we marked as ["Good first issue"](https://github.com/OpenZeppelin/openzeppelin-solidity/labels/good%20first%20issue).
5757

5858
Thanks for your time and code!

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Zeppelin Solidity
2-
[![NPM Package](https://img.shields.io/npm/v/zeppelin-solidity.svg?style=flat-square)](https://www.npmjs.org/package/zeppelin-solidity)
3-
[![Build Status](https://img.shields.io/travis/OpenZeppelin/zeppelin-solidity.svg?branch=master&style=flat-square)](https://travis-ci.org/OpenZeppelin/zeppelin-solidity)
4-
[![Coverage Status](https://img.shields.io/coveralls/github/OpenZeppelin/zeppelin-solidity/master.svg?style=flat-square)](https://coveralls.io/github/OpenZeppelin/zeppelin-solidity?branch=master)
1+
# OpenZeppelin Solidity
2+
[![NPM Package](https://img.shields.io/npm/v/openzeppelin-solidity.svg?style=flat-square)](https://www.npmjs.org/package/openzeppelin-solidity)
3+
[![Build Status](https://img.shields.io/travis/OpenZeppelin/openzeppelin-solidity.svg?branch=master&style=flat-square)](https://travis-ci.org/OpenZeppelin/openzeppelin-solidity)
4+
[![Coverage Status](https://img.shields.io/coveralls/github/OpenZeppelin/openzeppelin-solidity/master.svg?style=flat-square)](https://coveralls.io/github/OpenZeppelin/openzeppelin-solidity?branch=master)
55

66
OpenZeppelin is a library for writing secure [Smart Contracts](https://en.wikipedia.org/wiki/Smart_contract) on Ethereum.
77

@@ -24,15 +24,15 @@ truffle init
2424
To install the OpenZeppelin library, run the following in your Solidity project root directory:
2525
```sh
2626
npm init -y
27-
npm install -E zeppelin-solidity
27+
npm install -E openzeppelin-solidity
2828
```
2929

3030
**Note that OpenZeppelin does not currently follow semantic versioning.** You may encounter breaking changes upon a minor version bump. We recommend pinning the version of OpenZeppelin you use, as done by the `-E` (`--save-exact`) option.
3131

32-
After that, you'll get all the library's contracts in the `node_modules/zeppelin-solidity/contracts` folder. You can use the contracts in the library like so:
32+
After that, you'll get all the library's contracts in the `node_modules/openzeppelin-solidity/contracts` folder. You can use the contracts in the library like so:
3333

3434
```solidity
35-
import 'zeppelin-solidity/contracts/ownership/Ownable.sol';
35+
import 'openzeppelin-solidity/contracts/ownership/Ownable.sol';
3636
3737
contract MyContract is Ownable {
3838
...
@@ -56,9 +56,9 @@ Building a distributed application, protocol or organization with OpenZeppelin?
5656
Interested in contributing to OpenZeppelin?
5757

5858
- Framework proposal and roadmap: https://medium.com/zeppelin-blog/zeppelin-framework-proposal-and-development-roadmap-fdfa9a3a32ab#.iain47pak
59-
- Issue tracker: https://github.com/OpenZeppelin/zeppelin-solidity/issues
60-
- Contribution guidelines: https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/CONTRIBUTING.md
61-
- Wiki: https://github.com/OpenZeppelin/zeppelin-solidity/wiki
59+
- Issue tracker: https://github.com/OpenZeppelin/openzeppelin-solidity/issues
60+
- Contribution guidelines: https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/CONTRIBUTING.md
61+
- Wiki: https://github.com/OpenZeppelin/openzeppelin-solidity/wiki
6262

6363
## License
64-
Code released under the [MIT License](https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/LICENSE).
64+
Code released under the [MIT License](https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/LICENSE).

contracts/token/ERC20/MintableToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import "../../ownership/Ownable.sol";
77
/**
88
* @title Mintable token
99
* @dev Simple ERC20 Token example, with mintable token creation
10-
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
10+
* @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120
1111
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
1212
*/
1313
contract MintableToken is StandardToken, Ownable {

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "zeppelin-solidity",
2+
"name": "openzeppelin-solidity",
33
"version": "1.8.0",
44
"description": "Secure Smart Contract library for Solidity",
55
"files": [

0 commit comments

Comments
 (0)