Skip to content

Commit

Permalink
chore: upgraded to fuel-core 0.36.0 (#3182)
Browse files Browse the repository at this point in the history
* chore: bumped versions

* chore: update schema

* chore: changeset
  • Loading branch information
petertonysmith94 committed Sep 18, 2024
1 parent 3668a26 commit 20d2ac2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .changeset/four-students-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@internal/fuel-core": patch
"@fuel-ts/account": patch
"create-fuels": patch
"@fuel-ts/versions": patch
---

chore: upgraded to fuel-core 0.36.0
2 changes: 1 addition & 1 deletion internal/fuel-core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.35.0
0.36.0
1 change: 1 addition & 0 deletions packages/account/src/providers/fuel-core-schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ type ConsensusParameters {
feeParams: FeeParameters!
baseAssetId: AssetId!
blockGasLimit: U64!
blockTransactionSizeLimit: U64!
chainId: U64!
gasCosts: GasCosts!
privilegedAddress: Address!
Expand Down
2 changes: 1 addition & 1 deletion packages/account/src/providers/provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ describe('Provider', () => {

const version = await provider.getVersion();

expect(version).toEqual('0.35.0');
expect(version).toEqual('0.36.0');
});

it('can call()', async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/versions/src/lib/getBuiltinVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Versions } from './types';
export function getBuiltinVersions(): Versions {
return {
FORC: '0.63.5',
FUEL_CORE: '0.35.0',
FUEL_CORE: '0.36.0',
FUELS: '0.94.6',
};
}
2 changes: 1 addition & 1 deletion templates/nextjs/sway-programs/fuel-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channel = "testnet"

[components]
forc = "0.63.5"
fuel-core = "0.35.0"
fuel-core = "0.36.0"
2 changes: 1 addition & 1 deletion templates/vite/sway-programs/fuel-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channel = "testnet"

[components]
forc = "0.63.5"
fuel-core = "0.35.0"
fuel-core = "0.36.0"

0 comments on commit 20d2ac2

Please sign in to comment.