diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-12-06 22:37:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 22:37:16 +0800 |
commit | 9ba07edb2ec7fcdd628cfa7155c4853160ebd5c3 (patch) | |
tree | 4ae00008d9604bf997350f72f89cea60338c91b6 /changelog.md | |
parent | 4ca2dcb404aa1b92900e838790d5df554fc0cb9a (diff) | |
download | Nim-9ba07edb2ec7fcdd628cfa7155c4853160ebd5c3.tar.gz |
build the documentation of official packages (#20986)
* remove db stuffs * remove punycode * remove * fixes script * add cloner * patches * disable * patch * fixes external packages * disable two packages * preview documentation build * try again * fixes URL * fixes a bug * simplify * fixes documentaion * fixes * Apply suggestions from code review
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 046e65cb8..0b2b6e50d 100644 --- a/changelog.md +++ b/changelog.md @@ -119,6 +119,16 @@ - Using an unnamed break in a block is deprecated. This warning will become an error in future versions! Use a named block with a named break instead. +- Several Standard libraries are moved to nimble packages, use `nimble` to install them: + - `std/punycode` => `punycode` + - `std/asyncftpclient` => `asyncftpclient` + - `std/smtp` => `smtp` + - `std/db_common` => `db_connector/db_common` + - `std/db_sqlite` => `db_connector/db_sqlite` + - `std/db_mysql` => `db_connector/db_mysql` + - `std/db_postgres` => `db_connector/db_postgres` + - `std/db_odbc` => `db_connector/db_odbc` + - Previously, calls like `foo(a, b): ...` or `foo(a, b) do: ...` where the final argument of `foo` had type `proc ()` were assumed by the compiler to mean `foo(a, b, proc () = ...)`. This behavior is now deprecated. Use `foo(a, b) do (): ...` or `foo(a, b, proc () = ...)` instead. |