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

Support Boost 1.86 #637

Merged
merged 2 commits into from
Nov 7, 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
15 changes: 6 additions & 9 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Since last release
* Added package parameter to source (#613, #617, #621, #623, #630)
* Added default keep packaging to reactor (#618, #619)
* Added support for Ubuntu 24.04 (#633)
* Added (negative)binomial distributions for disruption modeling to storage (#635)
* Added (negative)binomial distributions for disruption modeling to storage (#635)

**Changed:**

Expand All @@ -27,6 +27,7 @@ Since last release
* Schedule Decommission in ``Reactor::Tick()`` instead of Decommission (#609)
* When trades fail in Source due to packaging, send empty material instead of seg faulting (#629)
* Logging of resource moves between ResBufs in Storage is INFO4 not INFO1 (#625)
* Support Boost>=1.86.0 (#637)

**Removed:**

Expand All @@ -43,10 +44,10 @@ v1.6.0
* GitHub workflow for publishing images and debian packages on release (#573, #582, #583, #593)
* GitHub workflows for building/testing on a PR and push to `main` (#549, #564, #573, #582, #583, #590)
* Add functionality for random behavior on the size (#550) and frequency (#565) of a sink
* GitHub workflow to check that the CHANGELOG has been updated (#562)
* GitHub workflow to check that the CHANGELOG has been updated (#562)
* Added inventory policies to Storage through the material buy policy (#574, #588)

**Changed:**
**Changed:**

* Updated build procedure to use newer versions of packages and compilers in 2023 (#549, #596, #599)
* Added active/dormant and request size variation from buy policy to Storage (#546, #568, #586, #587)
Expand All @@ -72,12 +73,12 @@ v1.5.4

* RecordTimeSeries has been added to the several archetypes; Reactor, Source, Sink,
FuelFab, Separations, and Storage. This change was made to allow these agents to
interact with the d3ploy archetypes.
interact with the d3ploy archetypes.
* Added unit tests for Cycamore archetypes with Position toolkit.

* Record function for Cycamore archetypes' coordinates in Sqlite Output.

**Changed:**
**Changed:**

- All cycamore archetypes have been edited to now include Cyclus::toolkit::Position.

Expand All @@ -88,7 +89,3 @@ v1.5.3
**Changed:**

* Many build system improvements, including making COIN optional.




1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ IF(NOT CYCLUS_DOC_ONLY)
MESSAGE("-- Boost Filesystem location: ${Boost_FILESYSTEM_LIBRARY}")
SET(LIBS ${LIBS} ${Boost_SERIALIZATION_LIBRARY})
MESSAGE("-- Boost Serialization location: ${Boost_SERIALIZATION_LIBRARY}")
ADD_DEFINITIONS(-DBOOST_VERSION_MINOR=${Boost_VERSION_MINOR})

# find lapack and link to it
# note there is no include directory variable:
Expand Down
Loading