File tree 2 files changed +4
-2
lines changed
Filter options
2 files changed +4
-2
lines changed
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Changes relevant to the users of python-tcod are documented here.
4
4
This project adheres to [ Semantic Versioning] ( https://semver.org/ ) since version ` 2.0.0 ` .
5
5
6
6
## [ Unreleased]
7
+
8
+ ## [ 16.2.0] - 2023-09-20
7
9
### Changed
8
10
- Renamed ` gauss ` methods to fix typos.
9
11
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def gauss(self, mu: float, sigma: float) -> float:
121
121
Returns:
122
122
float: A random float.
123
123
124
- .. versionchanged:: Unreleased
124
+ .. versionchanged:: 16.2
125
125
Renamed from `guass` to `gauss`.
126
126
"""
127
127
return float (lib .TCOD_random_get_gaussian_double (self .random_c , mu , sigma ))
@@ -140,7 +140,7 @@ def inverse_gauss(self, mu: float, sigma: float) -> float:
140
140
Returns:
141
141
float: A random float.
142
142
143
- .. versionchanged:: Unreleased
143
+ .. versionchanged:: 16.2
144
144
Renamed from `inverse_guass` to `inverse_gauss`.
145
145
"""
146
146
return float (lib .TCOD_random_get_gaussian_double_inv (self .random_c , mu , sigma ))
You can’t perform that action at this time.
0 commit comments