Skip to content

Commit 1a3d8c9

Browse files
authored
Merge pull request PSLmodels#1130 from rickecon/mindist_tpi
Merging
2 parents 673b1f3 + c10616b commit 1a3d8c9

5 files changed

Lines changed: 174 additions & 165 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.15.13] - 2026-05-15 06:00:00
9+
10+
### Added
11+
12+
- Increases the maximum value of the `mindist_TPI` parameter to 0.01 in `default_parameters.json`.
13+
- Updates the `uv.lock` with package updates.
14+
815
## [0.15.12] - 2026-05-14 12:00:00
916

1017
### Added
@@ -568,6 +575,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
568575
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.
569576

570577

578+
[0.15.13]: https://github.com/PSLmodels/OG-Core/compare/v0.15.12...v0.15.13
579+
[0.15.12]: https://github.com/PSLmodels/OG-Core/compare/v0.15.11...v0.15.12
571580
[0.15.11]: https://github.com/PSLmodels/OG-Core/compare/v0.15.10...v0.15.11
572581
[0.15.10]: https://github.com/PSLmodels/OG-Core/compare/v0.15.9...v0.15.10
573582
[0.15.9]: https://github.com/PSLmodels/OG-Core/compare/v0.15.8...v0.15.9

ogcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
from ogcore.txfunc import * # noqa: F403
2222
from ogcore.utils import * # noqa: F403
2323

24-
__version__ = "0.15.12"
24+
__version__ = "0.15.13"

ogcore/default_parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4661,7 +4661,7 @@
46614661
"validators": {
46624662
"range": {
46634663
"min": 1e-13,
4664-
"max": 0.001
4664+
"max": 0.01
46654665
}
46664666
}
46674667
},

pyproject.toml

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

55
[project]
66
name = "ogcore"
7-
version = "0.15.12"
7+
version = "0.15.13"
88
authors = [
99
{name = "Jason DeBacker and Richard W. Evans"},
1010
]

0 commit comments

Comments
 (0)