Bump versions

This commit is contained in:
Steve Ruiz 2022-04-26 09:04:34 +01:00
parent b4e97604b3
commit b859b721d0
8 changed files with 22 additions and 5 deletions

View file

@ -1,5 +1,11 @@
# @tldraw/vscode-editor # @tldraw/vscode-editor
## 1.9.0
### Minor Changes
- Bump underlying packages.
## 1.8.0 ## 1.8.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@tldraw/vscode-editor", "name": "@tldraw/vscode-editor",
"version": "1.8.0", "version": "1.9.0",
"private": true, "private": true,
"description": "An an editor for the tldraw vscode extension.", "description": "An an editor for the tldraw vscode extension.",
"author": "@steveruizok", "author": "@steveruizok",

View file

@ -1,5 +1,11 @@
## 1.2.4 ## 1.2.4
## 1.10.0
### Minor Changes
- Bump underlying packages.
## 1.9.0 ## 1.9.0
### Minor Changes ### Minor Changes

View file

@ -2,7 +2,7 @@
"name": "tldraw-vscode", "name": "tldraw-vscode",
"displayName": "tldraw", "displayName": "tldraw",
"description": "The tldraw Extension for VS Code.", "description": "The tldraw Extension for VS Code.",
"version": "1.9.0", "version": "1.10.0",
"license": "MIT", "license": "MIT",
"publisher": "tldraw-org", "publisher": "tldraw-org",
"repository": { "repository": {

View file

@ -26,7 +26,7 @@
"@sentry/tracing": "^6.13.2", "@sentry/tracing": "^6.13.2",
"@stitches/react": "^1.2.5", "@stitches/react": "^1.2.5",
"@tldraw/core": "^1.9.1", "@tldraw/core": "^1.9.1",
"@tldraw/tldraw": "^1.10.0", "@tldraw/tldraw": "^1.11.0",
"@types/next-auth": "^3.15.0", "@types/next-auth": "^3.15.0",
"aws-sdk": "^2.1053.0", "aws-sdk": "^2.1053.0",
"next": "^12.0.7", "next": "^12.0.7",

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
## 1.11.0
### Minor Changes
- Replace filehandling code.
## 1.10.0 ## 1.10.0
### Minor Changes ### Minor Changes

View file

@ -1,6 +1,6 @@
{ {
"name": "@tldraw/tldraw", "name": "@tldraw/tldraw",
"version": "1.10.0", "version": "1.11.0",
"description": "A tiny little drawing app (editor)", "description": "A tiny little drawing app (editor)",
"author": "@steveruizok", "author": "@steveruizok",
"repository": { "repository": {

View file

@ -10,7 +10,6 @@ import {
transformSingleRectangle, transformSingleRectangle,
} from '~state/shapes/shared' } from '~state/shapes/shared'
import { styled } from '@stitches/react' import { styled } from '@stitches/react'
import Vec from '@tldraw/vec'
type T = VideoShape type T = VideoShape
type E = HTMLDivElement type E = HTMLDivElement