ef32c04795
Fix TimelockController link in changelog
2020-11-19 16:04:12 -03:00
42da4d6867
Fix name of argument in docstring
...
Fixes #2410
2020-11-18 18:54:09 -03:00
f7bb84ce4c
Add changelog entry about support for both 0.6 and 0.7
...
(cherry picked from commit 5bd1c0d063 )
2020-11-18 16:31:41 -03:00
5bd1c0d063
Add changelog entry about support for both 0.6 and 0.7
2020-11-18 16:31:15 -03:00
c67d81bae1
3.3.0-rc.1
v3.3.0-rc.1
2020-11-17 21:39:45 -03:00
a5d1ac7ed0
Merge branch 'master' into release-v3.3
2020-11-17 21:39:07 -03:00
b8187aa529
Merge branch 'master' into solc-0.7
2020-11-17 21:37:54 -03:00
877f440331
Fix package.json version out of sync
2020-11-17 21:37:21 -03:00
58892471a3
Merge branch 'master' into solc-0.7
2020-11-17 21:34:25 -03:00
90ed1af972
Support compiling with solc 0.7 ( #2408 )
2020-11-17 21:29:39 -03:00
21344b91ed
Lint
2020-11-17 20:26:17 -03:00
3f9673c177
Update package-lock.json
2020-11-17 19:52:43 -03:00
fce2513827
Remove date from changelog
2020-11-17 19:25:45 -03:00
3debb8820e
Fix changelog versioning to include date only after final release
...
(cherry picked from commit d3a4e31fe2 )
2020-11-17 19:24:35 -03:00
d3a4e31fe2
Fix changelog versioning to include date only after final release
2020-11-17 19:23:02 -03:00
25ac33486c
3.3.0-rc.0
v3.3.0-rc.0
2020-11-17 18:58:48 -03:00
5803e11663
Improve script to version changelog
2020-11-17 18:50:10 -03:00
b33372cc92
Fix changelog entry for Bytes32Set
2020-11-17 18:27:23 -03:00
bcb2b5d1cd
Update lockfile ( #2407 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
2020-11-16 15:44:11 -03:00
3f2a2b5f62
Configure compilation with solc 0.7.4
2020-11-16 14:17:03 -03:00
4972bf4f23
Merge branch 'master' into solc-0.7
2020-11-16 14:11:46 -03:00
3d2e5c0310
Update lockfile ( #2384 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com >
Co-authored-by: Francisco Giordano <frangio.1@gmail.com >
2020-11-13 22:50:00 -03:00
f547b6ff27
Remove outdated comment in testing.md
2020-11-13 16:44:11 -03:00
5272799bdd
Fix ERC1155 URI example ( #2401 )
2020-11-12 18:23:35 -03:00
1a230e3aa5
Rename upgrade-safe package to upgradeable
2020-11-12 16:10:01 -03:00
679b7d147c
Clean Buidler cache before publishing
2020-11-11 17:47:15 -03:00
8effd1e02a
Add scripts for when publishing @openzeppelin/contracts directly
...
(cherry picked from commit a1408a3411 )
2020-11-11 16:40:23 -03:00
cb19930b83
Run tests on release branches
2020-11-11 12:49:23 -03:00
c6b07b33c5
Lint
2020-11-11 12:24:08 -03:00
47e37975c9
Remove bad SafeCast test
2020-11-11 12:22:06 -03:00
5472eedbad
Add guide about OZ Contracts Upgrade Safe ( #2403 )
...
Co-authored-by: Andrew B Coathup <28278242+abcoathup@users.noreply.github.com >
2020-11-10 18:24:47 -03:00
af95fe7a93
Reorder package.json fields
2020-11-09 16:40:38 -03:00
705b0b0001
Improve GitHub Actions node_modules caching
2020-11-06 23:39:56 -03:00
35c931126b
Remove old contracts/examples directory from package.json
2020-11-06 19:45:08 -03:00
6aada9d356
Update dependencies
2020-11-06 17:20:48 -03:00
da9161fc91
Migrate to GitHub Actions
2020-11-06 17:20:45 -03:00
1e78adc28c
Refactor buidler config
2020-11-06 14:28:01 -03:00
fcdf8f4618
Add BytesSet ( #2395 )
...
Co-authored-by: Francisco Giordano <frangio.1@gmail.com >
2020-11-04 16:57:48 -03:00
8533499507
Lint
2020-10-29 16:42:32 -03:00
fb4659c5d7
Change convention for unreleased changelog entries
2020-10-28 17:23:54 -03:00
a1408a3411
Add scripts for when publishing @openzeppelin/contracts directly
2020-10-28 17:05:14 -03:00
f06738828b
Migrate to Hardhat ( #2397 )
2020-10-28 17:03:05 -03:00
b6b1c0130b
3.2.2-solc-0.7
v3.2.2-solc-0.7
2020-10-28 16:33:23 -03:00
ea305cf32e
Change convention for unreleased changelog entries
2020-10-28 16:33:08 -03:00
d41102d6c3
add changelog entry for #2396
2020-10-28 16:27:38 -03:00
0c27ecc536
configure renovate using openzeppelin shareable config
2020-10-28 14:05:14 -03:00
0f55c18595
Fix/solc 0.7.4 warnings #2391 ( #2396 )
...
* Fix unnamed return variable warning
This commit fixes warnings thrown by the solc 0.7.4 compiler:
"Warning: Unnamed return variable can remain unassigned. Add an explicit
return with value to all non-reverting code paths or name the variable."
* Fix function state mutability warning
This commit fixes warnings thrown by the solc 0.7.4 compiler:
"Warning: Function state mutability can be restricted to pure"
* Fix shadows an existing declaration warning
This commit fixes warnings thrown by the solc 0.7.4 compiler:
"Warning: This declaration shadows an existing declaration."
1. Arguments by default are not underscored.
2. If the name isn't available due to shadowing, use prefix underscore.
3. If prefix underscore isn't available due to shadowing, use suffix underscore.
2020-10-28 13:42:38 -03:00
e5fbbda9ba
Add audit links to readme and doc index ( #2392 )
2020-10-21 15:59:43 -03:00
7650210ad6
Make contracts abstract if they had internal constructors ( #2383 )
2020-10-20 12:24:46 -03:00
ba125961d6
Update lockfile ( #2381 )
2020-10-16 12:48:30 -03:00