Merge pull request #1150 from davidhewitt/changelog-in-guide
Add CHANGELOG to the guide
This commit is contained in:
commit
6a2d4f2ac0
|
@ -481,8 +481,8 @@ Yanked
|
|||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/pyo3/pyo3/compare/v0.11.1...HEAD
|
||||
[0.11.0] https://github.com/pyo3/pyo3/compare/v0.11.0...v0.11.1
|
||||
[0.11.0] https://github.com/pyo3/pyo3/compare/v0.10.1...v0.11.0
|
||||
[0.11.1]: https://github.com/pyo3/pyo3/compare/v0.11.0...v0.11.1
|
||||
[0.11.0]: https://github.com/pyo3/pyo3/compare/v0.10.1...v0.11.0
|
||||
[0.10.1]: https://github.com/pyo3/pyo3/compare/v0.10.0...v0.10.1
|
||||
[0.10.0]: https://github.com/pyo3/pyo3/compare/v0.9.2...v0.10.0
|
||||
[0.9.2]: https://github.com/pyo3/pyo3/compare/v0.9.1...v0.9.2
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
|
||||
---
|
||||
|
||||
[Appendix A: PyO3 and rust-cpython](rust_cpython.md)
|
||||
[Appendix B: Migration Guide](migration.md)
|
||||
[Appendix A: Migration Guide](migration.md)
|
||||
[Appendix B: PyO3 and rust-cpython](rust_cpython.md)
|
||||
[Appendix C: Trait bounds](trait_bounds.md)
|
||||
[Appendix D: Logging](logging.md)
|
||||
[CHANGELOG](changelog.md)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{{#include ../../CHANGELOG.md}}
|
|
@ -1,7 +1,7 @@
|
|||
# Appendix B: Migrating from older PyO3 versions
|
||||
# Migrating from older PyO3 versions
|
||||
|
||||
This guide can help you upgrade code through breaking changes from one PyO3 version to the next.
|
||||
For a detailed list of all changes, see [CHANGELOG.md](https://github.com/PyO3/pyo3/blob/master/CHANGELOG.md)
|
||||
For a detailed list of all changes, see the [CHANGELOG](changelog.md).
|
||||
|
||||
## from 0.11.* to 0.12
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
# Appendix A: PyO3 and rust-cpython
|
||||
# PyO3 and rust-cpython
|
||||
|
||||
PyO3 began as fork of [rust-cpython](https://github.com/dgrunwald/rust-cpython) when rust-cpython wasn't maintained. Over the time PyO3 has become fundamentally different from rust-cpython.
|
||||
|
||||
This chapter is based on the discussion in [PyO3/pyo3#55](https://github.com/PyO3/pyo3/issues/55).
|
||||
PyO3 began as fork of [rust-cpython](https://github.com/dgrunwald/rust-cpython) when rust-cpython wasn't maintained. Over time PyO3 has become fundamentally different from rust-cpython.
|
||||
|
||||
## Macros
|
||||
|
||||
|
|
Loading…
Reference in New Issue