Merged
Conversation
d003614 to
5d0c94d
Compare
There was a problem hiding this comment.
Pull request overview
This PR upgrades the project from Elixir 1.18 to Elixir 1.19, updating runtime versions, dependencies, and CI configurations. The version is also bumped from 0.4.2 to 0.5.1.
Changes:
- Upgraded Elixir requirement from ~> 1.18 to ~> 1.19 and bumped project version to 0.5.1
- Updated all development dependencies to their latest versions compatible with Elixir 1.19
- Updated Erlang/Elixir versions in .tool-versions and GitHub Actions workflows
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| mix.exs | Updated Elixir version requirement to ~> 1.19, bumped project version to 0.5.1, and refactored CLI configuration into separate cli/0 function |
| mix.lock | Updated all development dependencies (benchee, credo, dialyxir, erlex, ex_doc, file_system, makeup_erlang) to latest versions |
| .tool-versions | Updated Erlang to 28.3.1 and Elixir to 1.19.5-otp-28 |
| .github/workflows/main.yml | Updated CI workflow to use Elixir 1.19.5 and standardized version string quoting |
| .github/workflows/release.yml | Updated release workflow to use Elixir 1.19.5 and standardized version string quoting |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
e2d13ff to
3926531
Compare
3ccf3c6 to
1502fbc
Compare
fabio-t
approved these changes
Feb 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the project to use Elixir 1.19.5 and Erlang 28.3.1, and makes related adjustments in configuration and workflow files. The most significant changes are the upgrade of language versions and the update of project settings to match.
Language and tool version upgrades:
.tool-versionsto useelixir 1.19.5-otp-28anderlang 28.3.1for local development and CI consistency.erlef/setup-beamsteps in.github/workflows/main.ymland.github/workflows/release.ymlto useelixir-version: "1.19.5"andotp-version: "28". [1] [2] [3] [4].github/workflows/main.ymlto test against Elixir 1.19.5 and OTP 28.Project configuration updates:
mix.exsto require Elixir~> 1.19and bumped the project version to0.5.1.mix.exsby movingpreferred_cli_envto a newclifunction.