ERC721 on NPM not updated with version on github

Last Open Zepplin changes on ERC721 (also upgradeable), namely removing the approval event on _transfer which took place 2 month ago are not updated on NPM.
The changes.

  // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

Current code when installing dependency with Yarn/NPM

   // Clear approvals from the previous owner
   _approve(address(0), tokenId);
2 Likes

The code you see on GitHub is the master branch, it has not been promoted to a release yet. It will be in a release candidate this week.

2 Likes