From d1ceae40704251299068612f5012149a7525bed5 Mon Sep 17 00:00:00 2001 From: Greg Sleap Date: Tue, 12 Nov 2024 16:08:06 +1100 Subject: [PATCH] Ensure only one version of pyo3-stub-gen-derive is used in the project --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f4f0fd..53cb23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Changes in each release are listed below. +## 1.8.1 12-Nov-2024 + +* Ensure only one version of pyo3-stub-gen-derive is used in the project. + ## 1.8.0 11-Nov-2024 * mwalib now will detect and raise an error (`MwalibError::Fits.CfitsioIsNotReentrant`) if the CFITSIO library that mwalib is linked with has been built without the `-D_REENTRANT` directive (github issue #82). diff --git a/Cargo.toml b/Cargo.toml index 78243c2..ed9911d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwalib" -version = "1.8.0" +version = "1.8.1" homepage = "https://github.com/MWATelescope/mwalib" repository = "https://github.com/MWATelescope/mwalib" readme = "README.md" @@ -57,7 +57,7 @@ pyo3 = { version = "~0.22", features = ["chrono", "extension-module", "macros"], # pyo3-stub-gen = { version = "~0.6", optional = true } # The below pyo3-stub-gen branch has not been merged with main as of 8-Nov-2024. once it has been it should be fine to go back to using the main branch again. pyo3-stub-gen = { branch = "chrono_feature", optional = true, git = "https://github.com/ThatOneShortGuy/pyo3-stub-gen" } -pyo3-stub-gen-derive = { version = "~0.6", optional = true } +pyo3-stub-gen-derive = { branch = "chrono_feature", optional = true, git = "https://github.com/ThatOneShortGuy/pyo3-stub-gen" } # "examples" feature. clap = { version = "~4.1", features = ["derive"], optional = true }