Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thorn0 committed Mar 21, 2020
1 parent c9225ca commit c5c9332
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 15 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.0.0**
**Prettier 2.0.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.0.0
- Prettier Version: 2.0.1
- Running Prettier via: <!-- CLI, Node.js API, Browser API, etc. -->
- Runtime: <!-- Node.js v6, Chrome v67, etc. -->
- Operating System: <!-- Windows, Linux, macOS, etc. -->
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 2.0.1

[diff](https://github.com/prettier/prettier/compare/2.0.0...2.0.1)

#### API: Fix build script to not corrupt `import-fresh` module ([#7820](https://github.com/prettier/prettier/pull/7820) by [@thorn0](https://github.com/thorn0))

# 2.0.0

[diff](https://github.com/prettier/prettier/compare/1.19.1...2.0.0)
Expand Down
12 changes: 6 additions & 6 deletions docs/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ See [Usage](#usage) below for examples.
### Global

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

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

```js
importScripts("https://unpkg.com/prettier@2.0.0/standalone.js");
importScripts("https://unpkg.com/prettier@2.0.0/parser-graphql.js");
importScripts("https://unpkg.com/prettier@2.0.1/standalone.js");
importScripts("https://unpkg.com/prettier@2.0.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.1.0-dev",
"version": "2.0.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 @@ -17,8 +17,8 @@ See [Usage](#usage) below for examples.
### Global

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

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

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

0 comments on commit c5c9332

Please sign in to comment.