You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mkdocs/docs/how-to-release.md
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,14 @@ For example, the API with the following deprecation tag should be removed when p
40
40
41
41
We also have the `deprecation_message` function. We need to change the behavior according to what is noted in the message of that deprecation.
42
42
43
+
```python
44
+
deprecation_message(
45
+
deprecated_in="0.1.0",
46
+
removed_in="0.2.0",
47
+
help_message="The old_property is deprecated. Please use the something_else property instead.",
48
+
)
49
+
```
50
+
43
51
## Running a release candidate
44
52
45
53
Make sure that the version is correct in `pyproject.toml` and `pyiceberg/__init__.py`. Correct means that it reflects the version that you want to release.
0 commit comments