Skip to content

Commit

Permalink
chore(all): Bump versions (#1067)
Browse files Browse the repository at this point in the history
Co-authored-by: aadamw <[email protected]>
Co-authored-by: Zeno Rocha <[email protected]>
Co-authored-by: Mriganka Mousum Gogoi <[email protected]>
Co-authored-by: Bu Kinoshita <[email protected]>
  • Loading branch information
5 people authored Dec 1, 2023
1 parent 93ef993 commit 03864d6
Show file tree
Hide file tree
Showing 24 changed files with 191 additions and 100 deletions.
118 changes: 118 additions & 0 deletions docs/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,131 @@ icon: "list-check"

## Dec 01, 2023

**react-email `1.10.0`**

- Use `tree-cli` instead of `tree-node-cli` which fixes problems with using it
behind a corporate proxy
- Fix problems with `jsx: 'preserve'` when trying to export emails by using a
specific tsconfig for bundling the code for the emails before rendering
- Improve error messages to avoid shallow feedback to users

**create-email `0.0.19`**

- Use `tree-cli` instead of `tree-node-cli` which fixes problems with
using it behind a corporate proxy
- Update `react-email` on the automatic setup to the latest

**Tailwind `0.0.13`**

The migration for this new version should be smooth sailing overall,
the only things to consider is that if you are using media query tailwind
styles you will need to move the Tailwind component directly above the head
element or Head component.

- Massive performance improvements
- Fix media queries not being loaded properly
- Fix Safari problems due to lookbehind expressions on regexes
- Make the Head obligatorily a direct element to Tailwind instead of HTml
followed by Head
- Fixed component not working with custom components that did not have
children

**Code-block `0.0.1`**

- Add code-block component
- Use modified version of [prismjs](https://prismjs.com/)
- Default themes from [prismjs
themes](https://github.com/PrismJS/prism-themes) exported [here](https://github.com/resendlabs/react-email/blob/canary/packages/code-block/src/themes.ts)

**Components `0.0.13`**

- Fix esm type exports
- Update `@react-email/body` to `v0.0.7`
- Update `@react-email/button` to `v0.0.13`
- update `@react-email/column` to `v0.0.9`
- update `@react-email/container` to `v0.0.11`
- update `@react-email/font` to `v0.0.5`
- update `@react-email/head` to `v0.0.7`
- update `@react-email/heading` to `v0.0.11`
- update `@react-email/hr` to `v0.0.7`
- update `@react-email/html` to `v0.0.7`
- update `@react-email/img` to `v0.0.7`
- update `@react-email/link` to `v0.0.7`
- update `@react-email/preview` to `v0.0.8`
- update `@react-email/render` to `v0.0.10`
- update `@react-email/row` to `v0.0.7`
- update `@react-email/section` to `v0.0.11`
- Update `@react-email/tailwind` to `v0.0.13`
- update `@react-email/text` to `v0.0.7`

**Body `0.0.7`**

- Fix esm type exports

**Button `0.0.13`**

- Fix esm type exports

**Column `0.0.9`**

- Fix esm type exports

**Container `0.0.11`**

- Fix esm type exports

**Font `0.0.5`**

- Fix esm type exports

**Font `0.0.5`**

- Fix esm type exports

**Head `0.0.7`**

- Fix esm type exports

**Heading `0.0.11`**

- Fix esm type exports

**Hr `0.0.7`**

- Fix esm type exports

**Html `0.0.7`**

- Fix esm type exports

**Img `0.0.7`**

- Fix esm type exports

**Link `0.0.7`**

- Fix esm type exports

**Markdown `0.0.8`**

- Fix esm type exports

**Preview `0.0.8`**

- Fix esm type exports

**Render `0.0.10`**

- Fix esm type exports

**Row `0.0.7`**

- Fix esm type exports

**Section `0.0.11`**

- Fix esm type exports

## Nov 01, 2023

**Components `0.0.11`**
Expand Down
2 changes: 1 addition & 1 deletion packages/body/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/body",
"version": "0.0.5",
"version": "0.0.7",
"description": "A React body component to wrap emails",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/button",
"version": "0.0.12",
"version": "0.0.13",
"description": "A link that is styled to look like a button",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/column/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/column",
"version": "0.0.8",
"version": "0.0.9",
"description": "Display a column that separates content areas vertically in your email",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
38 changes: 19 additions & 19 deletions packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@react-email/components",
"version": "0.0.12-canary.1",
"description": "All react-email components",
"version": "0.0.13",
"description": "A collection of all components React Email.",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down Expand Up @@ -41,23 +41,23 @@
"node": ">=18.0.0"
},
"dependencies": {
"@react-email/body": "0.0.4",
"@react-email/button": "0.0.11",
"@react-email/column": "0.0.8",
"@react-email/container": "0.0.10",
"@react-email/font": "0.0.4",
"@react-email/head": "0.0.6",
"@react-email/heading": "0.0.9",
"@react-email/hr": "0.0.6",
"@react-email/html": "0.0.6",
"@react-email/img": "0.0.6",
"@react-email/link": "0.0.6",
"@react-email/preview": "0.0.7",
"@react-email/render": "0.0.9",
"@react-email/row": "0.0.6",
"@react-email/section": "0.0.10",
"@react-email/tailwind": "0.0.13-canary.4",
"@react-email/text": "0.0.6"
"@react-email/body": "0.0.7",
"@react-email/button": "0.0.13",
"@react-email/column": "0.0.9",
"@react-email/container": "0.0.11",
"@react-email/font": "0.0.5",
"@react-email/head": "0.0.7",
"@react-email/heading": "0.0.11",
"@react-email/hr": "0.0.7",
"@react-email/html": "0.0.7",
"@react-email/img": "0.0.7",
"@react-email/link": "0.0.7",
"@react-email/preview": "0.0.8",
"@react-email/render": "0.0.10",
"@react-email/row": "0.0.7",
"@react-email/section": "0.0.11",
"@react-email/tailwind": "0.0.13",
"@react-email/text": "0.0.7"
},
"peerDependencies": {
"react": "18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/container/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/container",
"version": "0.0.10",
"version": "0.0.11",
"description": "A layout component that centers all the email content",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-email/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-email",
"version": "0.0.18",
"version": "0.0.19",
"description": "The easiest way to get started with React Email",
"main": "src/index.js",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions packages/create-email/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"export": "email export"
},
"dependencies": {
"@react-email/components": "0.0.7",
"react-email": "1.9.5"
"@react-email/components": "0.0.12",
"react-email": "1.10.0"
}
}
2 changes: 1 addition & 1 deletion packages/font/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/font",
"version": "0.0.4",
"version": "0.0.5",
"description": "A React Font component to set your fonts",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/head/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/head",
"version": "0.0.6",
"version": "0.0.7",
"description": "Contains head components such as style and meta elements.",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/heading/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/heading",
"version": "0.0.10",
"version": "0.0.11",
"description": "A block of heading text",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/hr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/hr",
"version": "0.0.6",
"version": "0.0.7",
"description": "Display a divider that separates content areas in your email",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/html",
"version": "0.0.6",
"version": "0.0.7",
"description": "A React html component to wrap emails",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/img/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/img",
"version": "0.0.6",
"version": "0.0.7",
"description": "Display an image in your email",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/link/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/link",
"version": "0.0.6",
"version": "0.0.7",
"description": "A hyperlink to web pages, email addresses, or anything else a URL can address",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/markdown",
"version": "0.0.7",
"version": "0.0.8",
"description": "Convert Markdown to valid React Email template code.",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/preview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/preview",
"version": "0.0.7",
"version": "0.0.8",
"description": "A preview text that will be displayed in the inbox of the recipient",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-email/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-email",
"version": "1.9.5",
"version": "1.10.0",
"description": "A live preview of your emails right in your browser.",
"bin": {
"email": "./dist/source/index.js"
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.9",
"version": "0.0.10",
"description": "Transform React components into HTML email templates",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/row/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/row",
"version": "0.0.6",
"version": "0.0.7",
"description": "A React row component",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/section/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/section",
"version": "0.0.10",
"version": "0.0.11",
"description": "Display a section that can be formatted using columns",
"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.13-canary.5",
"version": "0.0.13",
"description": "A React component to wrap emails with Tailwind CSS",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/text/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-email/text",
"version": "0.0.6",
"version": "0.0.7",
"description": "A block of text separated by blank spaces",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
Loading

0 comments on commit 03864d6

Please sign in to comment.