Skip to content

Commit

Permalink
ci(changesets): versioning packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 29, 2024
1 parent c203dfe commit c6b4cc4
Show file tree
Hide file tree
Showing 50 changed files with 110 additions and 70 deletions.
6 changes: 0 additions & 6 deletions .changeset/afraid-avocados-compare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brown-dingos-grow.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/clever-ravens-pump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-timers-melt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/old-garlics-warn.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/pink-geese-return.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/pink-onions-yawn.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/silly-hats-end.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/witty-seals-travel.md

This file was deleted.

2 changes: 2 additions & 0 deletions internal/check-imports/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,5 @@
## null

## null

## null
9 changes: 9 additions & 0 deletions packages/abi-coder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 0.76.0

### Minor Changes

- ✨ feat: add missing support for the `u256` type
The TS SDK is now capable of handling `u256` types, and hence capable of interacting (encoding/decoding) with any Sway programs that use the `u256` type.
**Breaking Change**:
- The `U64Coder` was removed in favour of the new `BigNumberCoder` which handles the encoding/decoding logic for both `u64` and `u256`. (`abi-coder` package), by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1799](https://github.com/FuelLabs/fuels-ts/pull/1799))

## 0.75.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-coder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/abi-coder",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/abi-typegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @fuel-ts/abi-typegen

## 0.76.0

### Minor Changes

- ✨ feat: add missing support for the `u256` type
The TS SDK is now capable of handling `u256` types, and hence capable of interacting (encoding/decoding) with any Sway programs that use the `u256` type.
**Breaking Change**:
- The `U64Coder` was removed in favour of the new `BigNumberCoder` which handles the encoding/decoding logic for both `u64` and `u256`. (`abi-coder` package), by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1799](https://github.com/FuelLabs/fuels-ts/pull/1799))

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-typegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/abi-typegen",
"version": "0.75.0",
"version": "0.76.0",
"description": "Generates Typescript definitions from Sway ABI Json files",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"bin": {
Expand Down
10 changes: 10 additions & 0 deletions packages/account/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 0.76.0

### Minor Changes

- Add the DateTime class, which allows for the conversion between common date time formats, by [@petertonysmith94](https://github.com/petertonysmith94) (See [#1627](https://github.com/FuelLabs/fuels-ts/pull/1627))

### Patch Changes

- Add method `addTransfer` to `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1810](https://github.com/FuelLabs/fuels-ts/pull/1810))

## 0.75.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/account/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/account",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/address/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/address/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/address",
"version": "0.75.0",
"version": "0.76.0",
"description": "Utilities for encoding and decoding addresses",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/contract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/contract",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/create-fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# create-fuels

## 0.76.0

### Patch Changes

- enable auto-install of dependencies in create-fuels, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1825](https://github.com/FuelLabs/fuels-ts/pull/1825))
- 🐞 fix tailwind syntax error in create-fuels template, by [@red-haze-dev](https://github.com/red-haze-dev) (See [#1816](https://github.com/FuelLabs/fuels-ts/pull/1816))
- 🐞 fix `create-fuels` crashing when being run, by [@Dhaiwat10](https://github.com/Dhaiwat10) (See [#1823](https://github.com/FuelLabs/fuels-ts/pull/1823))

## 0.75.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-fuels",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions packages/crypto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/crypto",
"version": "0.75.0",
"version": "0.76.0",
"description": "Utilities for encrypting and decrypting data",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/errors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @fuel-ts/errors

## 0.76.0

## 0.75.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/errors",
"version": "0.75.0",
"version": "0.76.0",
"description": "Error class and error codes that the fuels-ts library throws",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/forc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.76.0

### Minor Changes

- Updated `forc` to verson `0.51.1`, by [@nedsalk](https://github.com/nedsalk) (See [#1804](https://github.com/FuelLabs/fuels-ts/pull/1804))

## 0.75.0

## 0.74.0
Expand Down
2 changes: 1 addition & 1 deletion packages/forc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/forc",
"version": "0.75.0",
"version": "0.76.0",
"description": "NPM bin wrapper around Fuel `forc`",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions packages/fuel-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @fuel-ts/fuel-core

## 0.76.0

## 0.75.0

## 0.74.0
Expand Down
2 changes: 1 addition & 1 deletion packages/fuel-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/fuel-core",
"version": "0.75.0",
"version": "0.76.0",
"description": "NPM bin wrapper around `fuel-core`",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions packages/fuels/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fuels/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuels",
"version": "0.75.0",
"version": "0.76.0",
"description": "Fuel TS SDK",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"bin": {
Expand Down
2 changes: 2 additions & 0 deletions packages/hasher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hasher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/hasher",
"version": "0.75.0",
"version": "0.76.0",
"description": "Sha256 hash utility for Fuel",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/interfaces",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/math/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/math/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/math",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/merkle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/merkle",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/program/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.76.0

### Patch Changes

- Add method `addTransfer` to `BaseInvocationScope`, by [@Torres-ssf](https://github.com/Torres-ssf) (See [#1810](https://github.com/FuelLabs/fuels-ts/pull/1810))

## 0.75.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/program/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/program",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/script/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/script/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/script",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/transactions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## 0.76.0

## 0.75.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/transactions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuel-ts/transactions",
"version": "0.75.0",
"version": "0.76.0",
"description": "",
"author": "Fuel Labs <[email protected]> (https://fuel.network/)",
"main": "dist/index.js",
Expand Down
Loading

0 comments on commit c6b4cc4

Please sign in to comment.