Skip to content

Commit

Permalink
Drop Elixir 1.12.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
artkay committed Oct 12, 2024
1 parent daa5d2a commit 89f2847
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
- pair:
otp: 23.x
elixir: 1.13.x
- pair:
otp: 23.x
elixir: 1.12.x

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.17.1-otp-27
erlang 27.0
elixir 1.17.3-otp-27
erlang 27.1.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for v2.x

## 2.4.2 (2024-10-12)

* Dropped Elixir 1.12.x support

## 2.4.1 (2024-08-17)

* Fixed `GenerateDataKeyWithoutPlaintext` - it now does not send `KeySpec` when sending `NumberOfBytes` (#15)
Expand Down
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ defmodule ExAws.KMS.Mixfile do
use Mix.Project

@repo "https://github.com/ex-aws/ex_aws_kms"
@version "2.4.1"
@version "2.4.2"

def project do
[
app: :ex_aws_kms,
version: @version,
elixir: "~> 1.12",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -50,8 +50,7 @@ defmodule ExAws.KMS.Mixfile do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# dialyxir 1.4.x requires Elixir ~> 1.12
{:dialyxir, "1.3.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false},
{:hackney, ">= 0.0.0", only: [:dev, :test]},
{:poison, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, "~> 0.22", only: :dev},
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%{
"certifi": {:hex, :certifi, "2.12.0", "2d1cca2ec95f59643862af91f001478c9863c2ac9cb6e2f89780bfd8de987329", [:rebar3], [], "hexpm", "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"},
"dialyxir": {:hex, :dialyxir, "1.3.0", "fd1672f0922b7648ff9ce7b1b26fcf0ef56dda964a459892ad15f6b4410b5284", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "00b2a4bcd6aa8db9dcb0b38c1225b7277dca9bc370b6438715667071a304696f"},
"dialyxir": {:hex, :dialyxir, "1.4.4", "fb3ce8741edeaea59c9ae84d5cec75da00fa89fe401c72d6e047d11a61f65f70", [:mix], [{:erlex, ">= 0.2.7", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "cd6111e8017ccd563e65621a4d9a4a1c5cd333df30cebc7face8029cacb4eff6"},
"earmark": {:hex, :earmark, "1.4.4", "4821b8d05cda507189d51f2caeef370cf1e18ca5d7dfb7d31e9cafe6688106a4", [:mix], [], "hexpm", "1f93aba7340574847c0f609da787f0d79efcab51b044bb6e242cae5aca9d264d"},
"earmark_parser": {:hex, :earmark_parser, "1.4.40", "f3534689f6b58f48aa3a9ac850d4f05832654fe257bf0549c08cc290035f70d5", [:mix], [], "hexpm", "cdb34f35892a45325bad21735fadb88033bcb7c4c296a999bde769783f53e46a"},
"erlex": {:hex, :erlex, "0.2.7", "810e8725f96ab74d17aac676e748627a07bc87eb950d2b83acd29dc047a30595", [:mix], [], "hexpm", "3ed95f79d1a844c3f6bf0cea61e0d5612a42ce56da9c03f01df538685365efb0"},
Expand Down

0 comments on commit 89f2847

Please sign in to comment.