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

chore: version packages #159

Merged
merged 1 commit into from
Apr 17, 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
5 changes: 0 additions & 5 deletions .changeset/four-months-decide.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/slimy-socks-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-laws-tap.md

This file was deleted.

9 changes: 9 additions & 0 deletions apps/relay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @farcaster/auth-relay

## 0.0.10

### Patch Changes

- 1265f28: feat: add fallback hub
- 62874a0: - support redirectUrl
- remove ethers hard dependency
- 72239b1: chore: return response from async handler

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/auth-relay",
"version": "0.0.9",
"version": "0.0.10",
"description": "Farcaster Auth relay server",
"private": true,
"type": "commonjs",
Expand Down
10 changes: 10 additions & 0 deletions examples/frontend-only/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frontend-only

## 0.0.1

### Patch Changes

- 62874a0: - support redirectUrl
- remove ethers hard dependency
- Updated dependencies [62874a0]
- @farcaster/auth-kit@0.2.2
2 changes: 1 addition & 1 deletion examples/frontend-only/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend-only",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
10 changes: 10 additions & 0 deletions examples/with-next-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# with-next-auth

## 0.1.1

### Patch Changes

- 62874a0: - support redirectUrl
- remove ethers hard dependency
- Updated dependencies [62874a0]
- @farcaster/auth-kit@0.2.2
2 changes: 1 addition & 1 deletion examples/with-next-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "with-next-auth",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
7 changes: 7 additions & 0 deletions packages/auth-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @farcaster/auth-client

## 0.1.1

### Patch Changes

- 62874a0: - support redirectUrl
- remove ethers hard dependency

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/auth-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/auth-client",
"version": "0.1.0",
"version": "0.1.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
9 changes: 9 additions & 0 deletions packages/auth-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @farcaster/auth-kit

## 0.2.2

### Patch Changes

- 62874a0: - support redirectUrl
- remove ethers hard dependency
- Updated dependencies [62874a0]
- @farcaster/auth-client@0.1.1

## 0.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/auth-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@farcaster/auth-kit",
"version": "0.2.1",
"version": "0.2.2",
"type": "module",
"main": "./dist/auth-kit.js",
"types": "./dist/auth-kit.d.ts",
Expand All @@ -18,7 +18,7 @@
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@farcaster/auth-client": "^0.1.0",
"@farcaster/auth-client": "^0.1.1",
"@vanilla-extract/css": "^1.14.0",
"ethers": "^6.12.0",
"qrcode": "^1.5.3",
Expand Down
7 changes: 7 additions & 0 deletions test/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# client-test

## 0.0.5

### Patch Changes

- 62874a0: - support redirectUrl
- remove ethers hard dependency

## 0.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion test/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-test",
"version": "0.0.4",
"version": "0.0.5",
"private": true,
"scripts": {
"test": " DOTENV_CONFIG_PATH=.env.test jest",
Expand Down
Loading