Skip to content

Commit 1c1adcb

Browse files
committed
Prepare v2.0.6
Signed-off-by: Sora Morimoto <[email protected]>
1 parent ac563f3 commit 1c1adcb

File tree

6 files changed

+68
-65
lines changed

6 files changed

+68
-65
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [unreleased]
1010

11+
## [2.0.6]
12+
1113
### Added
1214

1315
- Add support for arm64.
@@ -352,7 +354,8 @@ that require it.
352354

353355
- Initial release.
354356

355-
[unreleased]: https://github.com/ocaml/setup-ocaml/compare/v2.0.5...HEAD
357+
[unreleased]: https://github.com/ocaml/setup-ocaml/compare/v2.0.6...HEAD
358+
[2.0.6]: https://github.com/ocaml/setup-ocaml/compare/v2.0.5...v2.0.6
356359
[2.0.5]: https://github.com/ocaml/setup-ocaml/compare/v2.0.4...v2.0.5
357360
[2.0.4]: https://github.com/ocaml/setup-ocaml/compare/v2.0.3...v2.0.4
358361
[2.0.3]: https://github.com/ocaml/setup-ocaml/compare/v2.0.2...v2.0.3

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
- ubuntu-latest
123123
- windows-latest
124124
ocaml-compiler:
125-
- 4.13.x
125+
- 4.14.x
126126

127127
runs-on: ${{ matrix.os }}
128128

@@ -171,10 +171,10 @@ jobs:
171171
- name: Checkout code
172172
uses: actions/checkout@v3
173173
174-
- name: Use OCaml 4.13.x
174+
- name: Use OCaml 4.14.x
175175
uses: ocaml/setup-ocaml@v2
176176
with:
177-
ocaml-compiler: 4.13.x
177+
ocaml-compiler: 4.14.x
178178
dune-cache: true
179179
180180
- name: Deploy odoc to GitHub Pages
@@ -193,10 +193,10 @@ jobs:
193193
- name: Checkout code
194194
uses: actions/checkout@v3
195195
196-
- name: Use OCaml 4.13.x
196+
- name: Use OCaml 4.14.x
197197
uses: ocaml/setup-ocaml@v2
198198
with:
199-
ocaml-compiler: 4.13.x
199+
ocaml-compiler: 4.14.x
200200
dune-cache: true
201201
202202
- name: Lint doc
@@ -218,10 +218,10 @@ jobs:
218218
- name: Checkout code
219219
uses: actions/checkout@v3
220220
221-
- name: Use OCaml 4.13.x
221+
- name: Use OCaml 4.14.x
222222
uses: ocaml/setup-ocaml@v2
223223
with:
224-
ocaml-compiler: 4.13.x
224+
ocaml-compiler: 4.14.x
225225
dune-cache: true
226226
227227
- name: Lint fmt
@@ -240,10 +240,10 @@ jobs:
240240
- name: Checkout code
241241
uses: actions/checkout@v3
242242
243-
- name: Use OCaml 4.13.x
243+
- name: Use OCaml 4.14.x
244244
uses: ocaml/setup-ocaml@v2
245245
with:
246-
ocaml-compiler: 4.13.x
246+
ocaml-compiler: 4.14.x
247247
dune-cache: true
248248
249249
- name: Lint opam
@@ -260,7 +260,7 @@ See [Examples](examples.md) for more complex patterns.
260260

261261
| Name | Required | Description | Type | Default |
262262
| ------------------------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | -------- |
263-
| `ocaml-compiler` | Yes | The OCaml compiler packages to initialise. The packages must be separated by the comma. (e.g. `4.13.x`, `ocaml-base-compiler.4.13.0`, `ocaml-variants.4.13.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static`) | string | |
263+
| `ocaml-compiler` | Yes | The OCaml compiler packages to initialise. The packages must be separated by the comma. (e.g. `4.14.x`, `ocaml-base-compiler.4.13.0`, `ocaml-variants.4.13.0+options,ocaml-option-flambda,ocaml-option-musl,ocaml-option-static`) | string | |
264264
| `opam-repositories` | No | The name and URL pair of the repository to fetch the packages from. | string | |
265265
| `opam-pin` | No | Enable the automation feature for opam pin. | bool | `true` |
266266
| `opam-depext` | No | Enable the automation feature for opam depext. | bool | `true` |

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.5",
2+
"version": "2.0.6",
33
"private": true,
44
"scripts": {
55
"fmt": "prettier --write .",
@@ -31,8 +31,8 @@
3131
"devDependencies": {
3232
"@types/node": "18.7.14",
3333
"@types/semver": "7.3.12",
34-
"@typescript-eslint/eslint-plugin": "5.36.0",
35-
"@typescript-eslint/parser": "5.36.0",
34+
"@typescript-eslint/eslint-plugin": "5.36.1",
35+
"@typescript-eslint/parser": "5.36.1",
3636
"@vercel/ncc": "0.34.0",
3737
"eslint": "8.23.0",
3838
"eslint-config-prettier": "8.5.0",

yarn.lock

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -363,85 +363,85 @@
363363
dependencies:
364364
"@types/node" "*"
365365

366-
"@typescript-eslint/[email protected].0":
367-
version "5.36.0"
368-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.0.tgz#8f159c4cdb3084eb5d4b72619a2ded942aa109e5"
369-
integrity sha512-X3In41twSDnYRES7hO2xna4ZC02SY05UN9sGW//eL1P5k4CKfvddsdC2hOq0O3+WU1wkCPQkiTY9mzSnXKkA0w==
370-
dependencies:
371-
"@typescript-eslint/scope-manager" "5.36.0"
372-
"@typescript-eslint/type-utils" "5.36.0"
373-
"@typescript-eslint/utils" "5.36.0"
366+
"@typescript-eslint/[email protected].1":
367+
version "5.36.1"
368+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.1.tgz#471f64dc53600025e470dad2ca4a9f2864139019"
369+
integrity sha512-iC40UK8q1tMepSDwiLbTbMXKDxzNy+4TfPWgIL661Ym0sD42vRcQU93IsZIrmi+x292DBr60UI/gSwfdVYexCA==
370+
dependencies:
371+
"@typescript-eslint/scope-manager" "5.36.1"
372+
"@typescript-eslint/type-utils" "5.36.1"
373+
"@typescript-eslint/utils" "5.36.1"
374374
debug "^4.3.4"
375375
functional-red-black-tree "^1.0.1"
376376
ignore "^5.2.0"
377377
regexpp "^3.2.0"
378378
semver "^7.3.7"
379379
tsutils "^3.21.0"
380380

381-
"@typescript-eslint/[email protected].0":
382-
version "5.36.0"
383-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.0.tgz#c08883073fb65acaafd268a987fd2314ce80c789"
384-
integrity sha512-dlBZj7EGB44XML8KTng4QM0tvjI8swDh8MdpE5NX5iHWgWEfIuqSfSE+GPeCrCdj7m4tQLuevytd57jNDXJ2ZA==
381+
"@typescript-eslint/[email protected].1":
382+
version "5.36.1"
383+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.1.tgz#931c22c7bacefd17e29734628cdec8b2acdcf1ce"
384+
integrity sha512-/IsgNGOkBi7CuDfUbwt1eOqUXF9WGVBW9dwEe1pi+L32XrTsZIgmDFIi2RxjzsvB/8i+MIf5JIoTEH8LOZ368A==
385385
dependencies:
386-
"@typescript-eslint/scope-manager" "5.36.0"
387-
"@typescript-eslint/types" "5.36.0"
388-
"@typescript-eslint/typescript-estree" "5.36.0"
386+
"@typescript-eslint/scope-manager" "5.36.1"
387+
"@typescript-eslint/types" "5.36.1"
388+
"@typescript-eslint/typescript-estree" "5.36.1"
389389
debug "^4.3.4"
390390

391-
"@typescript-eslint/[email protected].0":
392-
version "5.36.0"
393-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.0.tgz#f4f859913add160318c0a5daccd3a030d1311530"
394-
integrity sha512-PZUC9sz0uCzRiuzbkh6BTec7FqgwXW03isumFVkuPw/Ug/6nbAqPUZaRy4w99WCOUuJTjhn3tMjsM94NtEj64g==
391+
"@typescript-eslint/[email protected].1":
392+
version "5.36.1"
393+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.1.tgz#23c49b7ddbcffbe09082e6694c2524950766513f"
394+
integrity sha512-pGC2SH3/tXdu9IH3ItoqciD3f3RRGCh7hb9zPdN2Drsr341zgd6VbhP5OHQO/reUqihNltfPpMpTNihFMarP2w==
395395
dependencies:
396-
"@typescript-eslint/types" "5.36.0"
397-
"@typescript-eslint/visitor-keys" "5.36.0"
396+
"@typescript-eslint/types" "5.36.1"
397+
"@typescript-eslint/visitor-keys" "5.36.1"
398398

399-
"@typescript-eslint/[email protected].0":
400-
version "5.36.0"
401-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.0.tgz#5d2f94a36a298ae240ceca54b3bc230be9a99f0a"
402-
integrity sha512-W/E3yJFqRYsjPljJ2gy0YkoqLJyViWs2DC6xHkXcWyhkIbCDdaVnl7mPLeQphVI+dXtY05EcXFzWLXhq8Mm/lQ==
399+
"@typescript-eslint/[email protected].1":
400+
version "5.36.1"
401+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.1.tgz#016fc2bff6679f54c0b2df848a493f0ca3d4f625"
402+
integrity sha512-xfZhfmoQT6m3lmlqDvDzv9TiCYdw22cdj06xY0obSznBsT///GK5IEZQdGliXpAOaRL34o8phEvXzEo/VJx13Q==
403403
dependencies:
404-
"@typescript-eslint/typescript-estree" "5.36.0"
405-
"@typescript-eslint/utils" "5.36.0"
404+
"@typescript-eslint/typescript-estree" "5.36.1"
405+
"@typescript-eslint/utils" "5.36.1"
406406
debug "^4.3.4"
407407
tsutils "^3.21.0"
408408

409-
"@typescript-eslint/[email protected].0":
410-
version "5.36.0"
411-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.0.tgz#cde7b94d1c09a4f074f46db99e7bd929fb0a5559"
412-
integrity sha512-3JJuLL1r3ljRpFdRPeOtgi14Vmpx+2JcR6gryeORmW3gPBY7R1jNYoq4yBN1L//ONZjMlbJ7SCIwugOStucYiQ==
409+
"@typescript-eslint/[email protected].1":
410+
version "5.36.1"
411+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.1.tgz#1cf0e28aed1cb3ee676917966eb23c2f8334ce2c"
412+
integrity sha512-jd93ShpsIk1KgBTx9E+hCSEuLCUFwi9V/urhjOWnOaksGZFbTOxAT47OH2d4NLJnLhkVD+wDbB48BuaycZPLBg==
413413

414-
"@typescript-eslint/[email protected].0":
415-
version "5.36.0"
416-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.0.tgz#0acce61b4850bdb0e578f0884402726680608789"
417-
integrity sha512-EW9wxi76delg/FS9+WV+fkPdwygYzRrzEucdqFVWXMQWPOjFy39mmNNEmxuO2jZHXzSQTXzhxiU1oH60AbIw9A==
414+
"@typescript-eslint/[email protected].1":
415+
version "5.36.1"
416+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.1.tgz#b857f38d6200f7f3f4c65cd0a5afd5ae723f2adb"
417+
integrity sha512-ih7V52zvHdiX6WcPjsOdmADhYMDN15SylWRZrT2OMy80wzKbc79n8wFW0xpWpU0x3VpBz/oDgTm2xwDAnFTl+g==
418418
dependencies:
419-
"@typescript-eslint/types" "5.36.0"
420-
"@typescript-eslint/visitor-keys" "5.36.0"
419+
"@typescript-eslint/types" "5.36.1"
420+
"@typescript-eslint/visitor-keys" "5.36.1"
421421
debug "^4.3.4"
422422
globby "^11.1.0"
423423
is-glob "^4.0.3"
424424
semver "^7.3.7"
425425
tsutils "^3.21.0"
426426

427-
"@typescript-eslint/[email protected].0":
428-
version "5.36.0"
429-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.0.tgz#104c864ecc1448417606359275368bf3872bbabb"
430-
integrity sha512-wAlNhXXYvAAUBbRmoJDywF/j2fhGLBP4gnreFvYvFbtlsmhMJ4qCKVh/Z8OP4SgGR3xbciX2nmG639JX0uw1OQ==
427+
"@typescript-eslint/[email protected].1":
428+
version "5.36.1"
429+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.1.tgz#136d5208cc7a3314b11c646957f8f0b5c01e07ad"
430+
integrity sha512-lNj4FtTiXm5c+u0pUehozaUWhh7UYKnwryku0nxJlYUEWetyG92uw2pr+2Iy4M/u0ONMKzfrx7AsGBTCzORmIg==
431431
dependencies:
432432
"@types/json-schema" "^7.0.9"
433-
"@typescript-eslint/scope-manager" "5.36.0"
434-
"@typescript-eslint/types" "5.36.0"
435-
"@typescript-eslint/typescript-estree" "5.36.0"
433+
"@typescript-eslint/scope-manager" "5.36.1"
434+
"@typescript-eslint/types" "5.36.1"
435+
"@typescript-eslint/typescript-estree" "5.36.1"
436436
eslint-scope "^5.1.1"
437437
eslint-utils "^3.0.0"
438438

439-
"@typescript-eslint/[email protected].0":
440-
version "5.36.0"
441-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.0.tgz#565d35a5ca00d00a406a942397ead2cb190663ba"
442-
integrity sha512-pdqSJwGKueOrpjYIex0T39xarDt1dn4p7XJ+6FqBWugNQwXlNGC5h62qayAIYZ/RPPtD+ButDWmpXT1eGtiaYg==
439+
"@typescript-eslint/[email protected].1":
440+
version "5.36.1"
441+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.1.tgz#7731175312d65738e501780f923896d200ad1615"
442+
integrity sha512-ojB9aRyRFzVMN3b5joSYni6FAS10BBSCAfKJhjJAV08t/a95aM6tAhz+O1jF+EtgxktuSO3wJysp2R+Def/IWQ==
443443
dependencies:
444-
"@typescript-eslint/types" "5.36.0"
444+
"@typescript-eslint/types" "5.36.1"
445445
eslint-visitor-keys "^3.3.0"
446446

447447

0 commit comments

Comments
 (0)