Skip to content

Commit 127be35

Browse files
committed
bump version and add changelog entry
1 parent ff4d189 commit 127be35

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.12", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v4

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,21 @@
6363

6464
## 2.2.7
6565

66-
+ Chnaged construction duration functionality.
66+
+ Changed construction duration functionality.
6767

6868
+ Weather window can now be extended to an arbitrarily long length by duplicating the underlying wind data.
6969

7070
+ All modules now report the actual construction time they require to perform the scope of work they model.
7171

7272
+ ManagementCost now keeps the management crew onsite for only the time necessary to complete all scope of work.
73+
74+
75+
## 2.6.0 (February 12 2025)
76+
77+
+ Add basic API to integrate LandBOSSE into WAVES
78+
79+
+ Tidy up of code to remove warnings
80+
81+
+ Removed OpenMDAO implementation (it is present within WISDEM)
82+
83+
+ Update to continuous integration script

pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "landbosse"
7-
version = "2.5.0"
7+
version = "2.6.0"
88
description = "Wind-Plant Integrated System Design & Engineering Model"
99
readme = "README.md"
1010
requires-python = ">=3.9"
11-
license = {text = "Apache-2.0"}
11+
license = { text = "Apache-2.0" }
1212
keywords = ["wind", "turbine", "mdao", "design", "optimization"]
1313
authors = [
14-
{name = "NREL WISDEM Team", email = "[email protected]" }
14+
{ name = "NREL WISDEM Team", email = "[email protected]" },
1515
]
1616
maintainers = [
17-
{name = "NREL WISDEM Team", email = "[email protected]" }
17+
{ name = "NREL WISDEM Team", email = "[email protected]" },
1818
]
19-
classifiers = [ # Optional
19+
classifiers = [ # Optional
2020
# How mature is this project? Common values are
2121
# 3 - Alpha
2222
# 4 - Beta
@@ -65,7 +65,7 @@ docs = ["sphinx", "sphinx_rtd_theme"]
6565
# issues, where the source is hosted, where to say thanks to the package
6666
# maintainers, and where to support the project financially. The key is
6767
# what's used to render the link text on PyPI.
68-
[project.urls] # Optional
68+
[project.urls] # Optional
6969
"Homepage" = "https://github.com/WISDEM/LandBOSSE"
7070
#"Documentation" = "https://wisdem.readthedocs.io"
7171
"Project" = "https://www.nrel.gov/wind/systems-engineering.html"

0 commit comments

Comments
 (0)