Skip to content

Commit

Permalink
Move back Counter to drafts.
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro committed Jan 17, 2019
1 parent 0a63053 commit 992cbb4
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
## 2.2.0 (unreleased)

### New features:
* `Counter`'s API has been stabilized, and therefore moved out of the `drafts` directory into `utils`.

### Improvements::
* `Counter`'s API has been improved, and is now used by `ERC721` (though it is still in `drafts`).
* `ERC721`'s transfers are now more gas efficient due to removal of unnecessary `SafeMath` calls.

## 2.1.1 (2019-04-01)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion contracts/mocks/CounterImpl.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pragma solidity ^0.5.0;

import "../utils/Counter.sol";
import "../drafts/Counter.sol";

contract CounterImpl {
using Counter for Counter.Counter;
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC721/ERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
import "../../utils/Counter.sol";
import "../../drafts/Counter.sol";
import "../../introspection/ERC165.sol";

/**
Expand Down
File renamed without changes.

0 comments on commit 992cbb4

Please sign in to comment.