aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorRaimo Niskanen <[email protected]>2017-07-21 09:29:45 +0200
committerRaimo Niskanen <[email protected]>2017-07-21 09:29:45 +0200
commitc2b9a8feea68b630505d7794713fa071fee734d2 (patch)
tree3e0320f10ecbeb8e036692883d42317cedd0d42c /lib/stdlib/src
parent00a9b77b6cbb4a7159ebdf94181dbac272592192 (diff)
parentfbc17edbae7da679f5290d778667ecd408a73f9f (diff)
downloadotp-c2b9a8feea68b630505d7794713fa071fee734d2.tar.gz
otp-c2b9a8feea68b630505d7794713fa071fee734d2.tar.bz2
otp-c2b9a8feea68b630505d7794713fa071fee734d2.zip
Merge branch 'raimo/stdlib/stop-deprecated-warn-crypto-rand_bytes-1/ERL-459' into maint
* raimo/stdlib/stop-deprecated-warn-crypto-rand_bytes-1/ERL-459: Change crypto:rand_bytes/1 deprecated -> removed
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r--lib/stdlib/src/otp_internal.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 9e9c0dc413..8933eb01b5 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -112,7 +112,7 @@ obsolete_1(crypto, rand_uniform, 2) ->
%% *** CRYPTO added in OTP 19 ***
obsolete_1(crypto, rand_bytes, 1) ->
- {deprecated, {crypto, strong_rand_bytes, 1}};
+ {removed, {crypto, strong_rand_bytes, 1}, "20.0"};
%% *** CRYPTO added in R16B01 ***