Skip to content

Commit

Permalink
Release packages (#7)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 15, 2023
1 parent d28f4dc commit 0354eb4
Show file tree
Hide file tree
Showing 35 changed files with 188 additions and 39 deletions.
22 changes: 0 additions & 22 deletions .changeset/sixty-nails-reflect.md

This file was deleted.

22 changes: 22 additions & 0 deletions packages/umi-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @metaplex-foundation/umi-core

## 0.2.1

### Patch Changes

- [#6](https://github.com/metaplex-foundation/umi/pull/6) [`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718) Thanks [@lorisleiva](https://github.com/lorisleiva)! - Add support for variable string serializers

There are now three ways to serialize/deserialize a string:

```ts
// With prefix.
umi.serializer.string().serialize('A');
// -> 0x0100000041

// Fixed.
umi.serializer.fixedString(8).serialize('A');
// -> 0x4100000000000000

// Variable.
umi.serializer.variableString().serialize('A');
// -> 0x41
```

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-core",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-downloader-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-downloader-http

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-downloader-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-downloader-http",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/umi-eddsa-web3js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @metaplex-foundation/umi-eddsa-web3js

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-web3js-adapters@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-eddsa-web3js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-eddsa-web3js",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-http-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-http-fetch

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-http-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-http-fetch",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-program-repository/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-program-repository

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-program-repository/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-program-repository",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/umi-rpc-web3js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @metaplex-foundation/umi-rpc-web3js

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-web3js-adapters@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-rpc-web3js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-rpc-web3js",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
25 changes: 25 additions & 0 deletions packages/umi-serializer-beet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @metaplex-foundation/umi-serializer-beet

## 0.2.1

### Patch Changes

- [#6](https://github.com/metaplex-foundation/umi/pull/6) [`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718) Thanks [@lorisleiva](https://github.com/lorisleiva)! - Add support for variable string serializers

There are now three ways to serialize/deserialize a string:

```ts
// With prefix.
umi.serializer.string().serialize('A');
// -> 0x0100000041

// Fixed.
umi.serializer.fixedString(8).serialize('A');
// -> 0x4100000000000000

// Variable.
umi.serializer.variableString().serialize('A');
// -> 0x41
```

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-serializer-beet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-serializer-beet",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-signer-derived/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-signer-derived

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-signer-derived/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-signer-derived",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/umi-signer-wallet-adapters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @metaplex-foundation/umi-signer-wallet-adapters

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-web3js-adapters@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-signer-wallet-adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-signer-wallet-adapters",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-storage-mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-storage-mock

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-storage-mock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-storage-mock",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
14 changes: 14 additions & 0 deletions packages/umi-test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @metaplex-foundation/umi-test

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-serializer-beet@0.2.1
- @metaplex-foundation/umi-eddsa-web3js@0.2.1
- @metaplex-foundation/umi-http-fetch@0.2.1
- @metaplex-foundation/umi-program-repository@0.2.1
- @metaplex-foundation/umi-rpc-web3js@0.2.1
- @metaplex-foundation/umi-storage-mock@0.2.1
- @metaplex-foundation/umi-transaction-factory-web3js@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-test",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/umi-transaction-factory-web3js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @metaplex-foundation/umi-transaction-factory-web3js

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-web3js-adapters@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-transaction-factory-web3js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-transaction-factory-web3js",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-uploader-aws/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-uploader-aws

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-uploader-aws/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-uploader-aws",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/umi-uploader-bundlr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @metaplex-foundation/umi-uploader-bundlr

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1
- @metaplex-foundation/umi-web3js-adapters@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-uploader-bundlr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-uploader-bundlr",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-uploader-nft-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-uploader-nft-storage

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/umi-uploader-nft-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metaplex-foundation/umi-uploader-nft-storage",
"version": "0.2.0",
"version": "0.2.1",
"license": "MIT",
"sideEffects": false,
"module": "dist/esm/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/umi-web3js-adapters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @metaplex-foundation/umi-web3js-adapters

## 0.2.1

### Patch Changes

- Updated dependencies [[`d28f4dc`](https://github.com/metaplex-foundation/umi/commit/d28f4dc05c45f35a429fa818e060aed648778718)]:
- @metaplex-foundation/umi-core@0.2.1

## 0.2.0

### Patch Changes
Expand Down
Loading

0 comments on commit 0354eb4

Please sign in to comment.