Skip to content

Commit

Permalink
Merge pull request sphinx-labs#1632 from sphinx-labs/changeset-releas…
Browse files Browse the repository at this point in the history
…e/main

Version Packages
  • Loading branch information
sam-goldman authored Apr 9, 2024
2 parents 9583307 + 40fdde8 commit 0da20a7
Show file tree
Hide file tree
Showing 17 changed files with 79 additions and 109 deletions.
6 changes: 0 additions & 6 deletions .changeset/curly-rules-boil.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-snakes-drop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-tools-smoke.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/honest-hats-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-carrots-hang.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/swift-pugs-cry.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @sphinx-labs/contracts

## 0.21.2

### Patch Changes

- c7af7ef: Remove deployedContractSizes
- 4f5a1fc: Remove `vm.getCode` to deploy `SphinxUtils` and `SphinxConstants`

## 0.21.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/contracts/foundry/SphinxConstants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity >=0.6.2 <0.9.0;
import { NetworkInfo, NetworkType } from "./SphinxPluginTypes.sol";

contract SphinxConstants {
string public constant sphinxLibraryVersion = 'v0.21.1';
string public constant sphinxLibraryVersion = 'v0.21.2';
address public constant compatibilityFallbackHandlerAddress = 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4;
address public constant multiSendAddress = 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761;
address public constant createCallAddress = 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4;
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sphinx-labs/contracts",
"version": "0.21.1",
"version": "0.21.2",
"description": "Sphinx contracts",
"main": "dist/index",
"types": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const CONTRACTS_LIBRARY_VERSION = 'v0.21.1'
export const CONTRACTS_LIBRARY_VERSION = 'v0.21.2'
80 changes: 19 additions & 61 deletions packages/contracts/test/SphinxInitCode.sol

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @sphinx-labs/core

## 0.24.1

### Patch Changes

- 52ae5f1: Throw an error if contracts are above the size limit
- c7af7ef: Remove deployedContractSizes
- 4f5a1fc: Remove `vm.getCode` to deploy `SphinxUtils` and `SphinxConstants`
- Updated dependencies [c7af7ef]
- Updated dependencies [4f5a1fc]
- @sphinx-labs/contracts@0.21.2

## 0.24.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sphinx-labs/core",
"version": "0.24.0",
"version": "0.24.1",
"description": "Sphinx core library",
"main": "dist/index",
"types": "dist/index",
Expand Down Expand Up @@ -38,7 +38,7 @@
"@nomicfoundation/hardhat-verify": "^2.0.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@openzeppelin/merkle-tree": "1.0.5",
"@sphinx-labs/contracts": "^0.21.0",
"@sphinx-labs/contracts": "^0.21.2",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"core-js": "^3.27.1",
Expand Down
15 changes: 15 additions & 0 deletions packages/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @sphinx-labs/demo

## 0.12.9

### Patch Changes

- af6235e: Bump timeout for demo tests
- 4f5a1fc: Remove `vm.getCode` to deploy `SphinxUtils` and `SphinxConstants`
- Updated dependencies [52ae5f1]
- Updated dependencies [54b192c]
- Updated dependencies [c7af7ef]
- Updated dependencies [149783c]
- Updated dependencies [4f5a1fc]
- @sphinx-labs/plugins@0.31.2
- @sphinx-labs/core@0.24.1
- @sphinx-labs/contracts@0.21.2

## 0.12.8

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@sphinx-labs/demo",
"version": "0.12.8",
"version": "0.12.9",
"description": "Sphinx demo",
"main": "dist/index",
"types": "dist/index",
Expand Down Expand Up @@ -42,9 +42,9 @@
"p-limit": "^3.1.0"
},
"dependencies": {
"@sphinx-labs/contracts": "^0.21.0",
"@sphinx-labs/core": "^0.24.0",
"@sphinx-labs/plugins": "^0.31.0",
"@sphinx-labs/contracts": "^0.21.2",
"@sphinx-labs/core": "^0.24.1",
"@sphinx-labs/plugins": "^0.31.2",
"@types/node": "^18.0.0",
"ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"ethers": "^6.7.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @sphinx-labs/plugins

## 0.31.2

### Patch Changes

- 52ae5f1: Throw an error if contracts are above the size limit
- 54b192c: Lower the number of max retries in the simulation
- c7af7ef: Remove deployedContractSizes
- 149783c: Stop overriding 'ETH_FROM'
- 4f5a1fc: Remove `vm.getCode` to deploy `SphinxUtils` and `SphinxConstants`
- Updated dependencies [52ae5f1]
- Updated dependencies [c7af7ef]
- Updated dependencies [4f5a1fc]
- @sphinx-labs/core@0.24.1
- @sphinx-labs/contracts@0.21.2

## 0.31.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sphinx-labs/plugins",
"version": "0.31.1",
"version": "0.31.2",
"description": "Sphinx plugins",
"main": "dist/index",
"types": "dist/index",
Expand Down Expand Up @@ -45,8 +45,8 @@
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@sphinx-labs/contracts": "^0.21.1",
"@sphinx-labs/core": "^0.24.0",
"@sphinx-labs/contracts": "^0.21.2",
"@sphinx-labs/core": "^0.24.1",
"@swc/core": "1.3.75",
"chalk": "^4.1.2",
"core-js": "^3.31.1",
Expand Down

0 comments on commit 0da20a7

Please sign in to comment.