v2: Bump version & generate docs#268
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the MultiversX SDK from version 1.6.3 to 2.0.0, suggesting a major version release with potential breaking changes. The update includes documentation regeneration and adds new gas estimation examples.
- Version bump from 1.6.3 to 2.0.0 in pyproject.toml and documentation configuration
- Addition of gas estimator documentation and Jupyter notebook examples
- Reformatting of documentation RST files with consistent ordering of automodule directives
Reviewed Changes
Copilot reviewed 23 out of 23 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pyproject.toml | Updated package version from 1.6.3 to 2.0.0 |
| examples/Cookbook.ipynb | Added examples showing gas limit estimator usage with entrypoints |
| docs/*.rst | Regenerated documentation files with consistent formatting and new gas_estimator package |
| docs/conf.py | Updated copyright year to 2025 and release version to 2.0.0 |
| copyright = "2025, MultiversX" | ||
| author = "MultiversX" | ||
| release = "1.6.2" | ||
| release = "2.0.0" |
There was a problem hiding this comment.
The release version in docs/conf.py is set to '2.0.0' but the version in pyproject.toml is also '2.0.0'. However, there's an inconsistency with the previous release version mentioned in the file which was '1.6.2', while pyproject.toml shows the previous version as '1.6.3'. This suggests the documentation may not have been properly synchronized with the package version.
| release = "2.0.0" | |
| release = "2.0.0" # Previous release: 1.6.3 |
No description provided.