Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 688fc66

Browse filesBrowse files
committed
Prepare 16.2.0 release.
1 parent 7b75e01 commit 688fc66
Copy full SHA for 688fc66

File tree

2 files changed

+4
-2
lines changed
Filter options

2 files changed

+4
-2
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changes relevant to the users of python-tcod are documented here.
44
This project adheres to [Semantic Versioning](https://semver.org/) since version `2.0.0`.
55

66
## [Unreleased]
7+
8+
## [16.2.0] - 2023-09-20
79
### Changed
810
- Renamed `gauss` methods to fix typos.
911

‎tcod/random.py

Copy file name to clipboardExpand all lines: tcod/random.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def gauss(self, mu: float, sigma: float) -> float:
121121
Returns:
122122
float: A random float.
123123
124-
.. versionchanged:: Unreleased
124+
.. versionchanged:: 16.2
125125
Renamed from `guass` to `gauss`.
126126
"""
127127
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:
140140
Returns:
141141
float: A random float.
142142
143-
.. versionchanged:: Unreleased
143+
.. versionchanged:: 16.2
144144
Renamed from `inverse_guass` to `inverse_gauss`.
145145
"""
146146
return float(lib.TCOD_random_get_gaussian_double_inv(self.random_c, mu, sigma))

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.