You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,9 @@ While the snippet above works fine in many occasions, for large collections it w
55
55
56
56
The `Task.async_stream` functions are also lazy, allowing developers to partially consume the stream until a condition is reached. Furthermore, `Task.Supervisor.async_stream/4` and `Task.Supervisor.async_stream/6` can be used to ensure the concurrent tasks are spawned under a given supervisor.
57
57
58
-
## Application inflection
58
+
## Application inference
59
59
60
-
Mix v1.4 now automatically inflects the list of applications that are required on runtime from your dependencies list.
60
+
Mix v1.4 now automatically infers the list of applications that are required on runtime from your dependencies list.
61
61
62
62
In previous Mix versions, most of your dependencies had to be added both to your dependencies list and applications list. Here is how a `mix.exs` would look like:
63
63
@@ -72,7 +72,7 @@ In previous Mix versions, most of your dependencies had to be added both to your
72
72
73
73
This was error prone as many developers would not list their dependencies in their applications list.
74
74
75
-
Mix v1.4 now automatically inflects your applications list as long as you leave the `:applications` key empty. The `mix.exs` above can be rewritten to:
75
+
Mix v1.4 now automatically infers your applications list as long as you leave the `:applications` key empty. The `mix.exs` above can be rewritten to:
76
76
77
77
def application do
78
78
[extra_applications: [:logger]]
@@ -144,7 +144,7 @@ We hope this feature provides a more streamlined workflow for developers who are
144
144
#### Mix
145
145
146
146
*[mix archive] Compress archive files built by `mix archive` as they are now unzipped during installation
147
-
*[mix compile] Automatically inflect the list of applications for Mix projects
147
+
*[mix compile] Automatically infer the list of applications for Mix projects
148
148
*[mix cmd] Add the ability to specify one or more apps in `mix cmd`
149
149
*[mix deps] Warn if there are non-applications in the `apps` directory for umbrella projects
150
150
*[mix deps] Add warning for invalid paths on `mix deps.clean`
0 commit comments