Skip to content

Commit

Permalink
changeset packages bump
Browse files Browse the repository at this point in the history
  • Loading branch information
João Ribeiro authored and João Ribeiro committed Nov 3, 2022
1 parent f1a8020 commit 9d451ce
Show file tree
Hide file tree
Showing 10 changed files with 57 additions and 12 deletions.
6 changes: 6 additions & 0 deletions packages/models/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @react-slip-and-slide/models

## 1.5.0

### Minor Changes

- clampOffset.MAX gets a wrong value if wrapperWidth < container.width which cause the rubberband effect to have a weird behavior + add shouldAnimatedStartup validation

## 1.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/models/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-slip-and-slide/models",
"version": "1.4.0",
"version": "1.5.0",
"main": "dist/react-slip-and-slide-models.cjs.js",
"module": "dist/react-slip-and-slide-models.esm.js",
"types": "dist/react-slip-and-slide-models.cjs.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions packages/native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @react-slip-and-slide/native

## 1.8.0

### Minor Changes

- clampOffset.MAX gets a wrong value if wrapperWidth < container.width which cause the rubberband effect to have a weird behavior + add shouldAnimatedStartup validation

### Patch Changes

- Updated dependencies
- @react-slip-and-slide/models@1.5.0
- @react-slip-and-slide/utils@1.5.1

## 1.7.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@react-slip-and-slide/native",
"author": "João Ribeiro",
"license": "MIT",
"version": "1.7.0",
"version": "1.8.0",
"description": "react-slip-and-slide native",
"type": "module",
"files": [
Expand Down Expand Up @@ -35,8 +35,8 @@
"typescript": "^4.6.4"
},
"dependencies": {
"@react-slip-and-slide/models": "1.4.0",
"@react-slip-and-slide/utils": "1.5.0"
"@react-slip-and-slide/models": "1.5.0",
"@react-slip-and-slide/utils": "1.5.1"
},
"peerDependencies": {
"@react-spring/native": "^9.5.5",
Expand Down
8 changes: 8 additions & 0 deletions packages/react-slip-and-slide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# react-slip-and-slide

## 1.4.2

### Patch Changes

- Updated dependencies
- @react-slip-and-slide/native@1.8.0
- @react-slip-and-slide/web@1.8.0

## 1.4.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react-slip-and-slide/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "./dist",
"types": "./dist/index.d.ts",
"author": "João Ribeiro <joaodrr3@gmail.com>",
"version": "1.4.1",
"version": "1.4.2",
"license": "MIT",
"type": "module",
"files": [
Expand All @@ -21,8 +21,8 @@
"access": "public"
},
"dependencies": {
"@react-slip-and-slide/web": "1.7.0",
"@react-slip-and-slide/native": "1.7.0"
"@react-slip-and-slide/web": "1.8.0",
"@react-slip-and-slide/native": "1.8.0"
},
"keywords": [
"react-slip-and-slide",
Expand Down
7 changes: 7 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @react-slip-and-slide/models

## 1.5.1

### Patch Changes

- Updated dependencies
- @react-slip-and-slide/models@1.5.0

## 1.5.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@react-slip-and-slide/utils",
"version": "1.5.0",
"version": "1.5.1",
"main": "./dist",
"types": "./dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@react-slip-and-slide/models": "1.4.0"
"@react-slip-and-slide/models": "1.5.0"
},
"scripts": {
"build": "tsc"
Expand Down
12 changes: 12 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @react-slip-and-slide/web

## 1.8.0

### Minor Changes

- clampOffset.MAX gets a wrong value if wrapperWidth < container.width which cause the rubberband effect to have a weird behavior + add shouldAnimatedStartup validation

### Patch Changes

- Updated dependencies
- @react-slip-and-slide/models@1.5.0
- @react-slip-and-slide/utils@1.5.1

## 1.7.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@react-slip-and-slide/web",
"author": "João Ribeiro",
"license": "MIT",
"version": "1.7.0",
"version": "1.8.0",
"description": "react-slip-and-slide",
"type": "module",
"files": [
Expand Down Expand Up @@ -38,8 +38,8 @@
"vite-tsconfig-paths": "^3.5.1"
},
"dependencies": {
"@react-slip-and-slide/models": "1.4.0",
"@react-slip-and-slide/utils": "1.5.0"
"@react-slip-and-slide/models": "1.5.0",
"@react-slip-and-slide/utils": "1.5.1"
},
"peerDependencies": {
"@use-gesture/react": "^10.2.20",
Expand Down

0 comments on commit 9d451ce

Please sign in to comment.