@@ -299,7 +299,7 @@ roman_decode('XXXVII') # returns 37
299299**roman_range**: Generator which returns roman numbers on each iteration
300300~~~~
301301for n in roman_range(10): print(n) # prints: I, II, III, IV, V, VI, VII, VIII, IX, X
302- for n in roman_range(start=7, stop=1, step=-1): print(n) prints: VII, VI, V, IV, III, II, I
302+ for n in roman_range(start=7, stop=1, step=-1): print(n)# prints: VII, VI, V, IV, III, II, I
303303~~~~
304304
305305#### String generations:
@@ -328,9 +328,17 @@ secure_random_hex(12)
328328 pip install python-string-utils
329329
330330
331+ ## Checking installed version
332+
333+ ~~~
334+ import string_utils
335+ string_utils.__ version__
336+ '1.0.0' # (if '1.0.0' is the installed version)
337+ ~~~
338+
331339## Documentation
332340
333- Full API documentation available on: http ://python-string-utils.readthedocs.org /en/latest/
341+ Full API documentation available on [readthedocs.io](https ://python-string-utils.readthedocs.io /en/develop)
334342
335343
336344## Support the project!