diff options
-rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7971b741..68b90be7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -6,11 +6,6 @@ What's new in LuaRocks 3.0 | |||
6 | For example, if you have `/some/dir/lua/5.1/` in your `$LUA_PATH` and | 6 | For example, if you have `/some/dir/lua/5.1/` in your `$LUA_PATH` and |
7 | you are running Lua 5.2, `luarocks.loader` and the `luarocks` command-line | 7 | you are running Lua 5.2, `luarocks.loader` and the `luarocks` command-line |
8 | tool will convert it to `/some/dir/lua/5.2/`. | 8 | tool will convert it to `/some/dir/lua/5.2/`. |
9 | * Modules needed by `luarocks.loader` were moved into the `luarocks.core` namespace. | ||
10 | Modules in `luarocks.core` only depend on other `luarocks.core` modules. | ||
11 | (Notably, `luarocks.core` does not use `luarocks.fs`.) | ||
12 | * Modules representing `luarocks` commands were moved into the `luarocks.cmd` namespace. | ||
13 | * Modules representing `luarocks-admin` commands were moved into the `luarocks.admin.cmd` namespace. | ||
14 | 9 | ||
15 | Rockspec 3.0 | 10 | Rockspec 3.0 |
16 | ------------ | 11 | ------------ |
@@ -33,3 +28,11 @@ These features are only enabled if `rockspec_format = "3.0"` is set in the rocks | |||
33 | * Patches added in `patches` can create and delete files, following standard | 28 | * Patches added in `patches` can create and delete files, following standard |
34 | patch rules. | 29 | patch rules. |
35 | 30 | ||
31 | Internal changes | ||
32 | ---------------- | ||
33 | |||
34 | * Modules needed by `luarocks.loader` were moved into the `luarocks.core` namespace. | ||
35 | Modules in `luarocks.core` only depend on other `luarocks.core` modules. | ||
36 | (Notably, `luarocks.core` does not use `luarocks.fs`.) | ||
37 | * Modules representing `luarocks` commands were moved into the `luarocks.cmd` namespace. | ||
38 | * Modules representing `luarocks-admin` commands were moved into the `luarocks.admin.cmd` namespace. | ||