From 3a6105a9349e230af942f6b233cb5ff6aca97d24 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Wed, 8 Jan 2020 13:53:23 -0500 Subject: [PATCH] Remove Erlang solutions and .x versions from README --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2233672..90f7691 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ See [action.yml](action.yml). **Note** The OTP release version specification is [relatively complex](http://erlang.org/doc/system_principles/versions.html#version-scheme). -For best results, the current recommendation is to use a full exact version -spec from the list available from [Erlang -Solutions](https://www.erlang-solutions.com/resources/download.html). +For best results, we recommend specifying exact OTP and Elixir versions. +However, values like `22.x` are also accepted, and we attempt to resolve them +according to semantic versioning rules. ### Basic example @@ -32,8 +32,8 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-elixir@v1.2.0 with: - otp-version: 22.x - elixir-version: 1.9.x + otp-version: 22.2 + elixir-version: 1.9.4 - run: mix deps.get - run: mix test ``` @@ -49,8 +49,8 @@ jobs: name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} strategy: matrix: - otp: [20.x, 21.x, 22.x] - elixir: [1.8.x, 1.9.x] + otp: [20.3, 21.3, 22.2] + elixir: [1.8.2, 1.9.4] steps: - uses: actions/checkout@v2 - uses: actions/setup-elixir@v1.2.0 @@ -84,8 +84,8 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-elixir@v1.2.0 with: - otp-version: 22.x - elixir-version: 1.9.x + otp-version: 22.2 + elixir-version: 1.9.4 - run: mix deps.get - run: mix test ```