Skip to content

Commit

Permalink
chore: release 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Feb 25, 2024
1 parent da999a6 commit f1c4236
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ npx hardhat verify --network mainnet <address> <parameters>

## Deployments

### Sepolia (`v0.6.7`)
### Sepolia (`v0.6.8`)

https://github.com/nation3/foundations/blob/main/deployments/sepolia.json

Expand Down Expand Up @@ -143,7 +143,7 @@ https://github.com/nation3/foundations/blob/main/deployments/mainnet.json

- `NationCred.sol`: [`0x7794F0Eb1eA812fBcdaBD559551Fb26A79720925`](https://etherscan.io/address/0x7794F0Eb1eA812fBcdaBD559551Fb26A79720925)

### npm (`v0.6.7`)
### npm (`v0.6.8`)

https://www.npmjs.com/package/@nation3/nationcred-contracts

Expand Down
2 changes: 1 addition & 1 deletion contracts/NationCred.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "@openzeppelin/contracts/interfaces/IERC721.sol";
* @notice Stores the passport IDs of active Nation3 citizens.
*/
contract NationCred is INationCred {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
IERC721 public passport;
uint16[] private passportIDs;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/DeveloperSkillLevels.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {IPassportUtils} from "../utils/IPassportUtils.sol";
* https://nation3.org
*/
contract DeveloperSkillLevels {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => uint256) public skillLevelAverages;
mapping(address => uint8) public skillLevelRatingsCount;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/DiscordUsernames.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import {IPassportUtils} from "../utils/IPassportUtils.sol";

contract DiscordUsernames {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => string) public usernames;
IPassportUtils public passportUtils;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/DiscourseUsernames.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import {IPassportUtils} from "../utils/IPassportUtils.sol";

contract DiscourseUsernames {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => string) public usernames;
IPassportUtils public passportUtils;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/GitHubUsernames.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import {IPassportUtils} from "../utils/IPassportUtils.sol";

contract GitHubUsernames {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => string) public usernames;
IPassportUtils public passportUtils;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/MarketeerSkillLevels.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {IPassportUtils} from "../utils/IPassportUtils.sol";
* https://nation3.org
*/
contract MarketeerSkillLevels {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => uint256) public skillLevelAverages;
mapping(address => uint8) public skillLevelRatingsCount;
Expand Down
2 changes: 1 addition & 1 deletion contracts/citizens/OperatorSkillLevels.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {IPassportUtils} from "../utils/IPassportUtils.sol";
* https://nation3.org
*/
contract OperatorSkillLevels {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
address public owner;
mapping(address => uint256) public skillLevelAverages;
mapping(address => uint8) public skillLevelRatingsCount;
Expand Down
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nation3/nationcred-contracts",
"version": "0.6.7",
"version": "0.6.8",
"description": "NationCred smart contracts",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion contracts/rewards/DevGuildRewardsDistributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
* https://nation3.org
*/
contract DevGuildRewardsDistributor {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";

address public owner;
IPassportUtils public passportUtils;
Expand Down
2 changes: 1 addition & 1 deletion contracts/rewards/OpsGuildRewardsDistributor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
* https://nation3.org
*/
contract OpsGuildRewardsDistributor {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";

address public owner;
IPassportUtils public passportUtils;
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/PassportUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import "../governance/IVotingEscrow.sol";
* https://nation3.org
*/
contract PassportUtils is IPassportUtils {
string public constant VERSION = "0.6.7";
string public constant VERSION = "0.6.8";
IPassportIssuer public passportIssuer;
IVotingEscrow public votingEscrow;

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nationcred-contracts",
"version": "0.6.7",
"version": "0.6.8",
"description": "NationCred smart contracts",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f1c4236

Please sign in to comment.