Skip to content

Commit 61ccbbc

Browse files
docs: remove duplicate table of contents and changelog file
Clean up documentation by removing a duplicated table of contents section in the README and deleting the outdated changelog.md file. This streamlines the documentation structure and improves readability by eliminating redundant navigation elements. Key changes: - Remove duplicate table of contents section from README.md - Delete changelog.md file to consolidate documentation - Improve documentation clarity and navigation flow 🌿 Generated with Fern
1 parent 3e6e921 commit 61ccbbc

4 files changed

Lines changed: 8 additions & 25 deletions

File tree

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,6 @@ The Agoraio Python library provides convenient access to the Agoraio APIs from P
77

88
## Table of Contents
99

10-
- [Table of Contents](#table-of-contents)
11-
- [Installation](#installation)
12-
- [Reference](#reference)
13-
- [Usage](#usage)
14-
- [Async Client](#async-client)
15-
- [Exception Handling](#exception-handling)
16-
- [Pagination](#pagination)
17-
- [Advanced](#advanced)
18-
- [Access Raw Response Data](#access-raw-response-data)
19-
- [Retries](#retries)
20-
- [Timeouts](#timeouts)
21-
- [Custom Client](#custom-client)
22-
- [Contributing](#contributing)
23-
24-
## Table of Contents
25-
2610
- [Installation](#installation)
2711
- [Reference](#reference)
2812
- [Usage](#usage)

changelog.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
## 0.0.5 - 2025-11-19
2-
* docs: improve README table of contents and remove changelog
3-
* Updated the README documentation to include a more comprehensive table of contents with proper navigation links for better user experience. Also removed the outdated changelog.md file to streamline the documentation structure.
1+
## 0.0.6 - 2025-11-19
2+
* docs: remove duplicate table of contents and changelog file
3+
* Clean up documentation by removing a duplicated table of contents section in the README and deleting the outdated changelog.md file. This streamlines the documentation structure and improves readability by eliminating redundant navigation elements.
44
* Key changes:
5-
* Add detailed table of contents with nested structure for advanced topics
6-
* Include links to exception handling, pagination, and advanced features
7-
* Remove deprecated changelog.md file
8-
* Improve documentation navigation and discoverability
5+
* Remove duplicate table of contents section from README.md
6+
* Delete changelog.md file to consolidate documentation
7+
* Improve documentation clarity and navigation flow
98
* 🌿 Generated with Fern
109

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "agoraio-sdk"
33

44
[tool.poetry]
55
name = "agoraio-sdk"
6-
version = "0.0.5"
6+
version = "0.0.6"
77
description = ""
88
readme = "README.md"
99
authors = []

src/agoraio/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2727
"User-Agent": "agoraio-sdk/AUTO",
2828
"X-Fern-Language": "Python",
2929
"X-Fern-SDK-Name": "agoraio-sdk",
30-
"X-Fern-SDK-Version": "0.0.5",
30+
"X-Fern-SDK-Version": "0.0.6",
3131
**(self.get_custom_headers() or {}),
3232
}
3333
headers["Authorization"] = httpx.BasicAuth(self._get_username(), self._get_password())._auth_header

0 commit comments

Comments
 (0)