Skip to content

Commit

Permalink
chore(render, components, react-email, preview): Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmfern committed Jan 16, 2024
1 parent fc3ff48 commit a3dccad
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-email-client",
"version": "0.0.15-canary.0",
"version": "0.0.15",
"description": "The React Email preview application",
"license": "MIT",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/components",
"version": "0.0.14-canary.0",
"version": "0.0.13",
"description": "A collection of all components React Email.",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down Expand Up @@ -53,10 +53,10 @@
"@react-email/img": "0.0.7",
"@react-email/link": "0.0.7",
"@react-email/preview": "0.0.8",
"@react-email/render": "0.0.11-canary.0",
"@react-email/render": "0.0.11",
"@react-email/row": "0.0.7",
"@react-email/section": "0.0.11",
"@react-email/tailwind": "0.0.14-canary.0",
"@react-email/tailwind": "0.0.14",
"@react-email/text": "0.0.7"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-email/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-email",
"version": "1.10.1-canary.0",
"version": "1.10.1",
"description": "A live preview of your emails right in your browser.",
"bin": {
"email": "./dist/source/index.js"
Expand Down Expand Up @@ -28,7 +28,7 @@
"@commander-js/extra-typings": "9.4.1",
"@manypkg/find-root": "2.2.1",
"@octokit/rest": "19.0.7",
"@react-email/render": "0.0.11-canary.0",
"@react-email/render": "0.0.11",
"chokidar": "3.5.3",
"commander": "9.4.1",
"detect-package-manager": "2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-email/source/utils/download-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const downloadClient = async () => {
const downloadRes = await octokit.repos.downloadTarballArchive({
owner: 'resendlabs',
repo: 'react-email',
ref: 'v0.0.15-canary.0',
ref: 'v0.0.15',
});
fs.mkdirSync('.react-email-temp');
const TAR_PATH = path.join('.react-email-temp', 'react-email.tar.gz');
Expand Down
2 changes: 1 addition & 1 deletion packages/render/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/render",
"version": "0.0.11-canary.0",
"version": "0.0.11",
"description": "Transform React components into HTML email templates",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwind/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/tailwind",
"version": "0.0.14-canary.0",
"version": "0.0.14",
"description": "A React component to wrap emails with Tailwind CSS",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down

0 comments on commit a3dccad

Please sign in to comment.