Skip to content

Commit

Permalink
Release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Aug 26, 2020
1 parent ebe9e07 commit 18bcaef
Show file tree
Hide file tree
Showing 10 changed files with 105 additions and 97 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/formatting.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Tip! Don't write this stuff manually.
-->

**Prettier 2.1.0**
**Prettier 2.1.1**
[Playground link](https://prettier.io/playground/#.....)

```sh
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BEFORE SUBMITTING AN ISSUE:

**Environments:**

- Prettier Version: 2.1.0
- Prettier Version: 2.1.1
- Running Prettier via: <!-- CLI, Node.js API, Browser API, etc. -->
- Runtime: <!-- Node.js v14, Chrome v83, etc. -->
- Operating System: <!-- Windows, Linux, macOS, etc. -->
Expand Down
90 changes: 90 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,93 @@
# 2.1.1

[diff](https://github.com/prettier/prettier/compare/2.1.0...2.1.1)

#### Fix format on html with frontMatter ([#9043](https://github.com/prettier/prettier/pull/9043) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->
```html
<!-- Input -->
---
layout: foo
---

Test <a
href="https://prettier.io">abc</a>.

<!-- Prettier stable -->
TypeError: Cannot read property 'end' of undefined
...

<!-- Prettier master -->
---
layout: foo
---

Test <a href="https://prettier.io">abc</a>.
```

#### Fix broken format for `...infer T` ([#9044](https://github.com/prettier/prettier/pull/9044) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->
```typescript
// Input
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;

// Prettier stable
type Tail<T extends any[]> = T extends [infer U, ...(infer R)] ? R : never;

// Prettier master
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;
```

#### Fix format on `style[lang="sass"]` ([#9051](https://github.com/prettier/prettier/pull/9051) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->
```jsx
<!-- Input -->
<style lang="sass">
.hero
@include background-centered
</style>

<!-- Prettier stable -->
<style lang="sass">
.hero @include background-centered;
</style>

<!-- Prettier master -->
<style lang="sass">
.hero
@include background-centered
</style>
```

#### Fix self-closing blocks and blocks with `src` attribute format ([#9052](https://github.com/prettier/prettier/pull/9052), [#9055](https://github.com/prettier/prettier/pull/9055) by [@fisker](https://github.com/fisker))

<!-- prettier-ignore -->
```vue
<!-- Input -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />
<!-- Prettier stable -->
<custom lang="markdown" src="./foo.md">
</custom>
<custom lang="markdown" src="./foo.md"
/>
<custom lang="markdown"
/>
<!-- Prettier master -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />
```

# 2.1.0

[diff](https://github.com/prettier/prettier/compare/2.0.5...2.1.0)
Expand Down
23 changes: 0 additions & 23 deletions changelog_unreleased/html/pr-9043.md

This file was deleted.

21 changes: 0 additions & 21 deletions changelog_unreleased/html/pr-9051.md

This file was deleted.

13 changes: 0 additions & 13 deletions changelog_unreleased/typescript/pr-9044.md

This file was deleted.

25 changes: 0 additions & 25 deletions changelog_unreleased/vue/pr-9052.md

This file was deleted.

12 changes: 6 additions & 6 deletions docs/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ See [Usage](#usage) below for examples.
### Global

```html
<script src="https://unpkg.com/prettier@2.1.0/standalone.js"></script>
<script src="https://unpkg.com/prettier@2.1.0/parser-graphql.js"></script>
<script src="https://unpkg.com/prettier@2.1.1/standalone.js"></script>
<script src="https://unpkg.com/prettier@2.1.1/parser-graphql.js"></script>
<script>
prettier.format("query { }", {
parser: "graphql",
Expand All @@ -46,8 +46,8 @@ prettier.format("query { }", {

```js
define([
"https://unpkg.com/prettier@2.1.0/standalone.js",
"https://unpkg.com/prettier@2.1.0/parser-graphql.js",
"https://unpkg.com/prettier@2.1.1/standalone.js",
"https://unpkg.com/prettier@2.1.1/parser-graphql.js",
], (prettier, ...plugins) => {
prettier.format("query { }", { parser: "graphql", plugins });
});
Expand All @@ -66,7 +66,7 @@ This syntax doesn’t necessarily work in the browser, but it can be used when b
### Worker

```js
importScripts("https://unpkg.com/prettier@2.1.0/standalone.js");
importScripts("https://unpkg.com/prettier@2.1.0/parser-graphql.js");
importScripts("https://unpkg.com/prettier@2.1.1/standalone.js");
importScripts("https://unpkg.com/prettier@2.1.1/parser-graphql.js");
prettier.format("query { }", { parser: "graphql", plugins: prettierPlugins });
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier",
"version": "2.2.0-dev",
"version": "2.1.1",
"description": "Prettier is an opinionated code formatter",
"bin": "./bin/prettier.js",
"repository": "prettier/prettier",
Expand Down
12 changes: 6 additions & 6 deletions website/versioned_docs/version-stable/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ See [Usage](#usage) below for examples.
### Global

```html
<script src="https://unpkg.com/prettier@2.1.0/standalone.js"></script>
<script src="https://unpkg.com/prettier@2.1.0/parser-graphql.js"></script>
<script src="https://unpkg.com/prettier@2.1.1/standalone.js"></script>
<script src="https://unpkg.com/prettier@2.1.1/parser-graphql.js"></script>
<script>
prettier.format("query { }", {
parser: "graphql",
Expand All @@ -47,8 +47,8 @@ prettier.format("query { }", {

```js
define([
"https://unpkg.com/prettier@2.1.0/standalone.js",
"https://unpkg.com/prettier@2.1.0/parser-graphql.js",
"https://unpkg.com/prettier@2.1.1/standalone.js",
"https://unpkg.com/prettier@2.1.1/parser-graphql.js",
], (prettier, ...plugins) => {
prettier.format("query { }", { parser: "graphql", plugins });
});
Expand All @@ -67,7 +67,7 @@ This syntax doesn’t necessarily work in the browser, but it can be used when b
### Worker

```js
importScripts("https://unpkg.com/prettier@2.1.0/standalone.js");
importScripts("https://unpkg.com/prettier@2.1.0/parser-graphql.js");
importScripts("https://unpkg.com/prettier@2.1.1/standalone.js");
importScripts("https://unpkg.com/prettier@2.1.1/parser-graphql.js");
prettier.format("query { }", { parser: "graphql", plugins: prettierPlugins });
```

0 comments on commit 18bcaef

Please sign in to comment.