Unverified Commit 5b40202d by Francisco Giordano Committed by GitHub

Merge pull request #691 from frangio/fix-643

Add note about not following semver
parents ff9e9c4d 250572f4
...@@ -23,10 +23,12 @@ truffle init ...@@ -23,10 +23,12 @@ truffle init
To install the OpenZeppelin library, run the following in your Solidity project root directory: To install the OpenZeppelin library, run the following in your Solidity project root directory:
```sh ```sh
npm init npm init -y
npm install zeppelin-solidity npm install -E zeppelin-solidity
``` ```
**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.
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: 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:
```js ```js
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment