diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2017-10-05 14:14:15 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2017-10-05 14:14:50 -0300 |
commit | 8b1ca1877af2119f4dd3e964fa08639d3de2ef5f (patch) | |
tree | dd3c7cfbd4823766cc4395ef4a36f5d614335ec9 | |
parent | 6898b379a8c25db3e21ba27b96680c7d0c5683f2 (diff) | |
download | luarocks-8b1ca1877af2119f4dd3e964fa08639d3de2ef5f.tar.gz luarocks-8b1ca1877af2119f4dd3e964fa08639d3de2ef5f.tar.bz2 luarocks-8b1ca1877af2119f4dd3e964fa08639d3de2ef5f.zip |
ChangeLog: Mark module relocations as internal changes
-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. | ||