Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Elixir version to 1.12 #360

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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