From 576f90269d265e7a205e119a93fc69c629e95440 Mon Sep 17 00:00:00 2001 From: Nicolas Brugneaux Date: Tue, 8 Oct 2024 15:55:06 +0200 Subject: [PATCH] chore: enter beta (#385) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enter beta mode --- ## PR-Codex overview This PR introduces a new configuration file, `.changeset/pre.json`, which defines the pre-release mode and specifies version information for various `@celo` packages. ### Detailed summary - Added `.changeset/pre.json` file. - Set `mode` to `"pre"` and `tag` to `"beta"`. - Defined `initialVersions` for multiple `@celo` packages with specified version numbers. - Included an empty `changesets` array. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- .changeset/pre.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .changeset/pre.json diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 000000000..15e1e3198 --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,31 @@ +{ + "mode": "pre", + "tag": "beta", + "initialVersions": { + "@celo/celocli": "5.2.1", + "@celo/dev-utils": "0.0.5", + "@celo/base": "6.1.0", + "@celo/connect": "6.0.2", + "@celo/contractkit": "8.3.0", + "@celo/cryptographic-utils": "5.1.0", + "@celo/explorer": "5.0.12", + "@celo/governance": "5.1.3", + "@celo/keystores": "5.0.11", + "@celo/metadata-claims": "0.0.1", + "@celo/network-utils": "5.0.6", + "@celo/phone-utils": "6.0.3", + "@celo/transactions-uri": "5.0.11", + "@celo/utils": "7.0.0", + "@celo/wallet-base": "6.0.1", + "@celo/wallet-hsm": "6.0.1", + "@celo/wallet-hsm-aws": "6.0.1", + "@celo/wallet-hsm-azure": "6.0.1", + "@celo/wallet-hsm-gcp": "6.0.1", + "@celo/wallet-ledger": "6.0.1", + "@celo/wallet-local": "6.0.1", + "@celo/wallet-remote": "6.0.1", + "@celo/typescript": "0.0.1", + "@celo/viem-account-ledger": "0.0.1" + }, + "changesets": [] +}