From ffddb17a7a4923b77a3278a34c9467cfd72ecfb0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 13:00:43 -0400 Subject: [PATCH] Version Packages (#156) Co-authored-by: github-actions[bot] --- .changeset/real-bees-provide.md | 5 ----- packages/revolution/CHANGELOG.md | 6 ++++++ packages/revolution/package.json | 2 +- packages/revolution/src/version/RevolutionVersion.sol | 4 ++-- packages/splits/src/version/SplitsVersion.sol | 2 +- 5 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 .changeset/real-bees-provide.md diff --git a/.changeset/real-bees-provide.md b/.changeset/real-bees-provide.md deleted file mode 100644 index 94ca75e3..00000000 --- a/.changeset/real-bees-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cobuild/revolution": patch ---- - -Add new utility functions to grants contract diff --git a/packages/revolution/CHANGELOG.md b/packages/revolution/CHANGELOG.md index affc8f54..88304c16 100644 --- a/packages/revolution/CHANGELOG.md +++ b/packages/revolution/CHANGELOG.md @@ -1,5 +1,11 @@ # @collectivexyz/revolution +## 0.6.1 + +### Patch Changes + +- 552b0ce: Add new utility functions to grants contract + ## 0.6.0 ### Minor Changes diff --git a/packages/revolution/package.json b/packages/revolution/package.json index 880be745..cc4573ea 100644 --- a/packages/revolution/package.json +++ b/packages/revolution/package.json @@ -1,6 +1,6 @@ { "name": "@cobuild/revolution", - "version": "0.6.0", + "version": "0.6.1", "repository": "https://github.com/collectivexyz/revolution-protocol.git", "license": "GPL-3.0-only", "main": "./dist/index.js", diff --git a/packages/revolution/src/version/RevolutionVersion.sol b/packages/revolution/src/version/RevolutionVersion.sol index c339543d..7ddeefa4 100644 --- a/packages/revolution/src/version/RevolutionVersion.sol +++ b/packages/revolution/src/version/RevolutionVersion.sol @@ -1,5 +1,5 @@ // This file is automatically generated by code; do not manually update -// Last updated on 2024-05-13T21:35:05.098Z +// Last updated on 2024-05-14T17:00:26.990Z // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.22; @@ -10,6 +10,6 @@ import { IVersionedContract } from "@cobuild/utility-contracts/src/interfaces/IV contract RevolutionVersion is IVersionedContract { /// @notice The version of the contract function contractVersion() external pure override returns (string memory) { - return "0.6.0"; + return "0.6.1"; } } diff --git a/packages/splits/src/version/SplitsVersion.sol b/packages/splits/src/version/SplitsVersion.sol index 6ee996c3..bd7e9d1e 100644 --- a/packages/splits/src/version/SplitsVersion.sol +++ b/packages/splits/src/version/SplitsVersion.sol @@ -1,5 +1,5 @@ // This file is automatically generated by code; do not manually update -// Last updated on 2024-05-13T21:35:04.531Z +// Last updated on 2024-05-14T17:00:26.517Z // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.22;