Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: version packages #719

Merged
merged 3 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/lovely-swans-bow.md

This file was deleted.

16 changes: 16 additions & 0 deletions sdks/browser-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @xmtp/browser-sdk

## 0.0.4

### Patch Changes

- a1a16a0:
- Added `Signer` interface
- Refactored `Client.create` to accept a `Signer` instead of account address
- Refactored client creation to automatically register and identity
- Added `disableAutoRegister` to `ClientOptions` to allow disabling of client registration after creation
- Removed direct access to all signature functions
- Added `Client.register` method for registering a client
- Added `Client.addAccount` method for adding another account to an installation
- Added `Client.removeAccount` method for removing an account from an installation
- Added `Client.revokeInstallations` method for revoking all other installations
- Added static `Client.canMessage` for checking if an address is on the network without a client

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion sdks/browser-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xmtp/browser-sdk",
"version": "0.0.3",
"version": "0.0.4",
"description": "XMTP client SDK for browsers written in TypeScript",
"keywords": [
"xmtp",
Expand Down
17 changes: 17 additions & 0 deletions sdks/node-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @xmtp/node-sdk

## 0.0.24

### Patch Changes

- a1a16a0:
- Added `Signer` interface
- Refactored `Client.create` to accept a `Signer` instead of account address
- Refactored client creation to automatically register and identity
- Added `disableAutoRegister` to `ClientOptions` to allow disabling of client registration after creation
- Removed direct access to all signature functions
- Added `Client.register` method for registering a client
- Added `Client.addAccount` method for adding another account to an installation
- Added `Client.removeAccount` method for removing an account from an installation
- Added `Client.revokeInstallations` method for revoking all other installations
- Added static `Client.canMessage` for checking if an address is on the network without a client
- Added environment to DB path

## 0.0.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion sdks/node-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xmtp/node-sdk",
"version": "0.0.23",
"version": "0.0.24",
"description": "XMTP Node client SDK for interacting with XMTP networks",
"keywords": [
"xmtp",
Expand Down
Loading