Skip to content

Commit 9c11eb7

Browse files
committed
Release version 0.17.8
1 parent 5ef074a commit 9c11eb7

File tree

13 files changed

+53
-41
lines changed

13 files changed

+53
-41
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.17.8] - 2026-02-10
9+
10+
### Changed
11+
- Temporarily disabled validation warning that recommends `uncertainty_method` when uncertainties are provided, to prevent it from blocking exports or confusing users while the requirement is being reconsidered.
12+
13+
### Fixed
14+
- _List bug fixes here_
15+
16+
817
## [0.17.7] - 2026-02-10
918

1019
### Fixed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
cff-version: 1.2.0
22
message: "If you use microlens-submit, please cite it as below."
33
title: "microlens-submit"
4-
version: "0.17.7"
4+
version: "0.17.8"
55
authors:
66
- family-names: Malpas
77
given-names: Amber
88
url: "https://github.com/AmberLee2427/microlens-submit"
9-
doi: "10.5281/zenodo.18601926"
9+
doi: "10.5281/zenodo.18602427"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,15 +160,15 @@ import this file directly.
160160

161161
Bibtex:
162162
```
163-
@software{malpas_2025_18601926,
163+
@software{malpas_2025_18602427,
164164
author = {Malpas, Amber},
165165
title = {microlens-submit},
166166
month = oct,
167167
year = 2025,
168168
publisher = {Zenodo},
169169
version = {v0.16.3},
170-
doi = {10.5281/zenodo.18601926},
171-
url = {https://doi.org/10.5281/zenodo.18601926},
170+
doi = {10.5281/zenodo.18602427},
171+
url = {https://doi.org/10.5281/zenodo.18602427},
172172
}
173173
```
174174

RELEASE_NOTES.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# microlens-submit v0.17.7 Release Notes
1+
# microlens-submit v0.17.8 Release Notes
22

33
**Release Date:** 2026-02-10
44

55
## Changelog
66

7-
## [0.17.7] - 2026-02-10
7+
## [0.17.8] - 2026-02-10
8+
9+
### Changed
10+
- Temporarily disabled validation warning that recommends `uncertainty_method` when uncertainties are provided, to prevent it from blocking exports or confusing users while the requirement is being reconsidered.
811

912
### Fixed
10-
- Improved validation error messages when physical parameters (e.g. `Mtot`) are incorrectly placed in `parameter_uncertainties` instead of `physical_parameter_uncertainties`.
11-
- Corrected misleading example in documentation (`docs/usage_examples.rst`) that showed physical parameter uncertainties being added to the model parameter uncertainties dictionary.
13+
- _List bug fixes here_

TODO

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## Beta-Test Edits
2+
- [ ] Resolve uncertainty metadata requirement (re-visit validation logic in `validate_parameters.py` regarding `uncertainty_method`)
23
- [x] `remove_event()` function (and CLI)
34
- [x] `remove_solution()` function (and CLI)
45
- [x] Window 11 text editior

conda/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% set name = "microlens-submit" %}
22
{% set filename_name = name | replace("-", "_") %}
3-
{% set version = "0.17.7" %}
3+
{% set version = "0.17.8" %}
44
{% set python_min = "3.10" %}
55

66
# NOTE: This recipe is the source of truth for conda-forge. Edit it here in

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
author = "RGES-PIT"
99

1010
# The full version, including alpha/beta/rc tags
11-
release = "0.17.7"
11+
release = "0.17.8"
1212

1313
extensions = [
1414
"sphinx.ext.autodoc",

microlens_submit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
the command line interface.
66
"""
77

8-
__version__ = "0.17.7"
8+
__version__ = "0.17.8"
99

1010
from .models import Event, Solution, Submission
1111
from .utils import load

microlens_submit/validate_parameters.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,15 +1026,15 @@ def validate_uncertainty_metadata(
10261026
warnings = []
10271027

10281028
# Check if uncertainties are provided without metadata
1029-
has_param_unc = parameter_uncertainties is not None and len(parameter_uncertainties) > 0
1030-
has_phys_unc = physical_parameter_uncertainties is not None and len(physical_parameter_uncertainties) > 0
1031-
1032-
if (has_param_unc or has_phys_unc) and not uncertainty_method:
1033-
warnings.append(
1034-
"Recommendation: Uncertainties provided without uncertainty_method. "
1035-
"Consider adding --uncertainty-method to improve evaluation "
1036-
"(options: mcmc_posterior, fisher_matrix, bootstrap, propagation, inference, literature, other)"
1037-
)
1029+
# has_param_unc = parameter_uncertainties is not None and len(parameter_uncertainties) > 0
1030+
# has_phys_unc = physical_parameter_uncertainties is not None and len(physical_parameter_uncertainties) > 0
1031+
1032+
# if (has_param_unc or has_phys_unc) and not uncertainty_method:
1033+
# warnings.append(
1034+
# "Recommendation: Uncertainties provided without uncertainty_method. "
1035+
# "Consider adding --uncertainty-method to improve evaluation "
1036+
# "(options: mcmc_posterior, fisher_matrix, bootstrap, propagation, inference, literature, other)"
1037+
# )
10381038

10391039
# Validate confidence level if provided
10401040
if confidence_level is not None:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "microlens-submit"
9-
version = "0.17.7"
9+
version = "0.17.8"
1010
authors = [
1111
{ name="Amber Malpas", email="malpas.1@osu.edu" },
1212
{name = "Roman Science Platform Team", email = "roman-science-platform@stsci.edu"}

0 commit comments

Comments
 (0)