-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#= | ||
This file gathers all the deprecated names (structures, functions, or variables) which will be removed in the future major release. | ||
- Before the major release, the deprecated names will just throw errors when they are called. | ||
- If the deprecated names were once exported, we will still export them here until next major release. | ||
- If we decide to push a major release, cleanup this file. | ||
Example: | ||
export deprecated_foo | ||
function deprecated_foo(args...; kwargs...) | ||
error("`deprecated_foo` has been deprecated and will be removed in next major release, please use `new_foo` instead.") | ||
end | ||
=# |