Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.9.5 #413

Merged
merged 3 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Package import doesn't fail if `scipy` is missed https://github.com/light-curve/light-curve-python/pull/422
--

### Security

--

## [0.9.5] 2024-09-19

### Added

- More variants of temperature and bollometric functions for
`RainbowFit` https://github.com/light-curve/light-curve-python/pull/411

### Changed

- Change boundary conditions for `RainbowFit` https://github.com/light-curve/light-curve-python/pull/414

### Fixed

- Package import doesn't fail if `scipy` is missed https://github.com/light-curve/light-curve-python/pull/422

## [0.9.4] 2024-09-11

### Changed

- Experimental Rainbow fit features use maximum likelihood cost function instead of least squares https://github.com/light-curve/light-curve-python/pull/407
- Experimental Rainbow fit features use maximum likelihood cost function instead of least
squares https://github.com/light-curve/light-curve-python/pull/407

## [0.9.3] 2024-06-17

### Fixed

- Small bug fix in MagnitudeNNotDetBeforeFd for numpy v2.0 compatibility https://github.com/light-curve/light-curve-python/pull/383

- Small bug fix in MagnitudeNNotDetBeforeFd for numpy v2.0
compatibility https://github.com/light-curve/light-curve-python/pull/383

## [0.9.2] 2024-06-05

Expand Down Expand Up @@ -303,7 +319,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Initial `copy` and `pickle` (minimum protocol version is 2) support for feature extractors
and `DmDt` https://github.com/light-curve/light-curve-python/issues/103 https://github.com/light-curve/light-curve-python/pull/145 https://github.com/light-curve/light-curve-python/pull/150
and
`DmDt` https://github.com/light-curve/light-curve-python/issues/103 https://github.com/light-curve/light-curve-python/pull/145 https://github.com/light-curve/light-curve-python/pull/150
- `serde` v1 and `serde-pickle` v1 Rust dependencies. `serde-pickle` is an arbitrary choice of a (de)serialization
binary format, but it could be useful in the future having a way to inspect Rust structures from
Python https://github.com/light-curve/light-curve-python/pull/145
Expand Down
34 changes: 17 additions & 17 deletions light-curve/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion light-curve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "light-curve-python"
version = "0.9.4"
version = "0.9.5"
authors = ["Konstantin Malanchev <[email protected]>", "Anastasia Lavrukhina <[email protected]>", "Sergey Karpov", "Etienne Russeil"]
description = "Feature extractor from noisy time series"
readme = "README.md"
Expand Down
Loading