Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
chore(templates): Update default Elixir version to 1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shanesveller committed Mar 10, 2024
1 parent f040001 commit 272e767
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ A complete example:
enable = true;
devShell.languageServers.elixir = true;
versions = {
elixir = "1.16.1";
elixir = "1.16.2";
erlang = "26.2.3";
};
};
Expand Down Expand Up @@ -138,7 +138,7 @@ setting `perSystem.beamWorkspace.devShell.enable = false;`
#
# Everything after the first hyphen is stripped and handled according
# to the defined erlang version instead.
elixir = "1.16.1";
elixir = "1.16.2";
erlang = "26.2.3";
};
};
Expand Down Expand Up @@ -206,7 +206,7 @@ If you are a Nix user, this is already automated:

```shell
nix develop ./dev
just add-elixir 1.16.1
just add-elixir 1.16.2
just add-erlang 26.2.3
```

Expand Down
2 changes: 1 addition & 1 deletion dev/example/.tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.16.1-otp-26
elixir 1.16.2-otp-26
erlang 26.2.3
2 changes: 1 addition & 1 deletion dev/example/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
devShell.languageServers.erlang = false;
flakePackages = true;
versions = {
elixir = "1.16.1-otp-26";
elixir = "1.16.2-otp-26";
erlang = "26.2.3";
};
# versions.fromToolVersions = ./.tool-versions;
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you are a Nix user, this is already automated:

```shell
nix develop ./dev
just add-elixir 1.16.1
just add-elixir 1.16.2
just add-erlang 26.2.3
```

Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ This approach is mutually exclusive with the syntax [described above](#explicitl

```
# .toolversions
elixir 1.16.1
elixir 1.16.2
erlang 26.2.3
```

Expand Down
2 changes: 1 addition & 1 deletion local-parts/devshells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
devShells.example = let
pkgSet = self.lib.mkPackageSet {
inherit pkgs;
elixirVersion = "1.16.1";
elixirVersion = "1.16.2";
erlangVersion = "26.2.3";
elixirLanguageServer = true;
};
Expand Down
2 changes: 1 addition & 1 deletion templates/default/.tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.16.1-otp-26
elixir 1.16.2-otp-26
erlang 26.2.3
2 changes: 1 addition & 1 deletion templates/default/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
languageServers.erlang = false;
};
versions = {
elixir = "1.16.1";
elixir = "1.16.2";
erlang = "26.2.3";
};
};
Expand Down
2 changes: 1 addition & 1 deletion templates/phoenix/.tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.16.1-otp-26
elixir 1.16.2-otp-26
erlang 26.2.3
2 changes: 1 addition & 1 deletion templates/phoenix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
phoenix = true;
};
versions = {
elixir = "1.16.1";
elixir = "1.16.2";
erlang = "26.2.3";
};
};
Expand Down

0 comments on commit 272e767

Please sign in to comment.