Skip to content

Commit

Permalink
Bump Elixir version to 1.12 (#360)
Browse files Browse the repository at this point in the history
* Bump Elixir version to 1.12

* Update CHANGELOG
  • Loading branch information
miguelnietoa committed Mar 4, 2024
1 parent 7bccde3 commit 6bc4959
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cd.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
otp: ['23.3']
elixir: ['1.11']
elixir: ['1.12']
env:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
steps:
Expand All @@ -26,7 +26,9 @@ jobs:
egress-policy: block
allowed-endpoints: >
github.com:443
*.hex.pm:443
hex.pm:443
repo.hex.pm:443
builds.hex.pm:443
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: erlef/setup-elixir@904c511e63061a8f501ae4b081ce2c0e9cfc70ab # v1.17.4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -16,8 +16,8 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: ['22.3', '23.3']
elixir: ['1.10', '1.11']
otp: ['23.3', '24.3']
elixir: ['1.12', '1.13']
env:
MIX_ENV: test
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@
* Update all dependencies. See [PR #332](https://github.com/kommitters/stellar_sdk/pull/332).
* Update scorecards allowed endpoints and Security Policy. See [PR #355](https://github.com/kommitters/stellar_sdk/pull/355).
* Delete `config` from `mix.exs` file. See [PR #358](https://github.com/kommitters/stellar_sdk/pull/358).
* Bump Elixir version to 1.12. See [PR #360](https://github.com/kommitters/stellar_sdk/pull/360).

## 0.20.0 (20.12.2023)

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -12,7 +12,7 @@ We want to make it as easy as possible to contribute changes that help the [Stel
* Fork the repository on GitHub.
* Try to keep your local repository in a "rebased" state.
* Set the project up.
* Install any Elixir version above 1.10.
* Install any Elixir version above 1.12.
* Compile dependencies: `mix deps.get`.
* Run tests: `mix test`.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -1053,7 +1053,7 @@ See [**Stellar.Horizon.TradeAggregations**](https://developers.stellar.org/api/a
---

## Development
* Install any Elixir version above 1.10.
* Install any Elixir version above 1.12.
* Compile dependencies: `mix deps.get`.
* Run tests: `mix test`.

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -8,7 +8,7 @@ defmodule Stellar.MixProject do
[
app: :stellar_sdk,
version: @version,
elixir: "~> 1.10",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Elixir Stellar SDK",
Expand Down

0 comments on commit 6bc4959

Please sign in to comment.