Skip to content

Commit

Permalink
bump latest version to 0.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-haskell committed May 12, 2023
1 parent 687f80e commit 6c6b17f
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Expand Up @@ -8,8 +8,8 @@ versions:

| Version | Supported |
| ---------- | ------------------ |
| 0.18.1 | :white_check_mark: |
| < 0.18.1 | :x: |
| 0.18.3 | :white_check_mark: |
| < 0.18.3 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.js
@@ -1,4 +1,4 @@
const version = '0.18.1'
const version = '0.18.3'

export default {
title: 'Elm Land',
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/config/cli-commands.md
Expand Up @@ -149,7 +149,7 @@ Here's example output of what you'd see if you ran this command in the ["Pages a

```txt
🌈 Elm Land (v0.18.1) found 5 pages in your application
🌈 Elm Land (v0.18.3) found 5 pages in your application
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
src/Pages/Home_.elm ............... http://localhost:1234/
src/Pages/SignIn.elm .............. http://localhost:1234/sign-in
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/index.md
Expand Up @@ -18,7 +18,7 @@

## Installation

To get started, we'll need to install the latest version of _Elm Land_ from NPM. At the time of writing, the latest version of Elm Land is `v0.18.1`. Here's the NPM command that will install `elm-land` on your computer:
To get started, we'll need to install the latest version of _Elm Land_ from NPM. At the time of writing, the latest version of Elm Land is `v0.18.3`. Here's the NPM command that will install `elm-land` on your computer:

```sh
npm install -g elm-land@latest
Expand All @@ -29,7 +29,7 @@ When the install command has finished, you'll be able to run `elm-land` in your
```txt
$ elm-land
🌈 Welcome to Elm Land! (v0.18.1)
🌈 Welcome to Elm Land! (v0.18.3)
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
Here are the available commands:
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/pages.md
Expand Up @@ -333,7 +333,7 @@ elm-land routes

```txt
🌈 Elm Land (v0.18.1) found 5 pages in your application
🌈 Elm Land (v0.18.3) found 5 pages in your application
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
src/Pages/Home_.elm ............... http://localhost:1234/
src/Pages/SignIn.elm .............. http://localhost:1234/sign-in
Expand Down
2 changes: 1 addition & 1 deletion projects/cli/README.md
Expand Up @@ -17,7 +17,7 @@ The `elm-land` CLI comes with everything you need to create your next web applic
```
$ elm-land
🌈 Welcome to Elm Land! (v0.18.1)
🌈 Welcome to Elm Land! (v0.18.3)
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
Here are the available commands:
Expand Down
4 changes: 2 additions & 2 deletions projects/cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion projects/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "elm-land",
"version": "0.18.1",
"version": "0.18.3",
"description": "Reliable web apps for everyone",
"main": "index.js",
"types": "./index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions projects/cli/tests/09-elm-binary.bats
Expand Up @@ -54,7 +54,7 @@ load helpers

cp -r ../../examples/01-hello-world ../../examples/01-local-hello
cd ../../examples/01-local-hello
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.1.tgz" } }' > package.json
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.3.tgz" } }' > package.json
npm install

run npx elm-land build
Expand All @@ -72,7 +72,7 @@ load helpers

cp -r ../../examples/01-hello-world ../../examples/01-local-hello
cd ../../examples/01-local-hello
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.1.tgz" } }' > package.json
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.3.tgz" } }' > package.json
npm install -g yarn
yarn

Expand All @@ -91,7 +91,7 @@ load helpers

cp -r ../../examples/01-hello-world ../../examples/01-local-hello
cd ../../examples/01-local-hello
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.1.tgz" } }' > package.json
echo '{ "dependencies": { "elm-land": "file:../../projects/cli/elm-land-0.18.3.tgz" } }' > package.json
npm install -g pnpm
pnpm install

Expand Down
8 changes: 4 additions & 4 deletions projects/graphql/README.md
Expand Up @@ -23,7 +23,7 @@ npm install -g elm-land@latest
```txt
$ elm-land graphql
🌈 Elm Land (v0.18.1) wants to add a plugin!
🌈 Elm Land (v0.18.3) wants to add a plugin!
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
To use the `@elm-land/graphql` plugin, I'll need
to install the NPM package and add a bit of JSON
Expand All @@ -35,14 +35,14 @@ $ elm-land graphql
```txt
$ elm-land graphql build
🌈 Elm Land (v0.18.1) successfully generated Elm files
🌈 Elm Land (v0.18.3) successfully generated Elm files
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
```

```txt
$ elm-land graphql watch
🌈 Elm Land (v0.18.1) is watching "./graphql/*" for changes...
🌈 Elm Land (v0.18.3) is watching "./graphql/*" for changes...
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
```

Expand All @@ -55,7 +55,7 @@ Here’s what running the CLI looks like when there’s no schema provided:
```
$ elm-land graphql build
🌈 Elm Land (v0.18.1) needs a GraphQL schema
🌈 Elm Land (v0.18.3) needs a GraphQL schema
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
You can provide one by customizing the "elm-land.json"
file to include a "graphql.schema" field.
Expand Down
4 changes: 2 additions & 2 deletions projects/graphql/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion projects/graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@elm-land/graphql",
"version": "0.18.1",
"version": "0.18.3",
"description": "Generate Elm code from GraphQL files",
"main": "src/index.js",
"scripts": {
Expand Down

0 comments on commit 6c6b17f

Please sign in to comment.