Skip to content

Commit

Permalink
Revert "Bump minimum required Elixir version"
Browse files Browse the repository at this point in the history
This reverts commit 17fd647.
  • Loading branch information
general-CbIC committed Jan 6, 2025
1 parent a700cce commit 04cfd4f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
fail-fast: false
matrix:
include:
- elixir: '1.7'
otp: '22'
- elixir: '1.8'
otp: '22'
- elixir: '1.9'
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Poolex is a library for managing pools of workers. Inspired by [poolboy](https:/
- [Poolex](#poolex)
- [Table of Contents](#table-of-contents)
- [Features](#features)
- [Compatibility table](#compatibility-table)
- [Requirements](#requirements)
- [Installation](#installation)
- [Usage](#usage)
- [Guides](#guides)
Expand All @@ -38,12 +38,12 @@ With `poolex` you can:
- `poolex` is written in Elixir. This library is much more convenient to use in Elixir projects.
- `poolboy` is a great library, but not actively maintained :crying_cat_face:![Last poolboy commit](https://img.shields.io/github/last-commit/devinus/poolboy?style=flat)

## Compatibility table
## Requirements

| Poolex | Erlang/OTP | Elixir |
|----------|------------|--------|
| <= 1.1.0 | >= 22.0 | >= 1.7 |
| >= 1.2.0 | >= 22.0 | >= 1.8 |
| Requirement | Version |
|-------------|---------|
| Erlang/OTP | >= 22 |
| Elixir | >= 1.7 |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion examples/poolex_example/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule PoolexExample.MixProject do
[
app: :poolex_example,
version: "0.1.0",
elixir: "~> 1.8",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
]
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Poolex.MixProject do
deps: deps(),
description: "The library for managing pools of workers.",
docs: docs(),
elixir: "~> 1.8",
elixir: "~> 1.7",
elixirc_options: [
warnings_as_errors: true
],
Expand Down

0 comments on commit 04cfd4f

Please sign in to comment.