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

Fixed version changed in Material #643

Merged
merged 2 commits into from
Jan 23, 2025
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
1 change: 0 additions & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ MontePy Changelog
* Added function: :func:`~montepy.mcnp_problem.MCNP_Problem.parse` to parse arbitrary MCNP object (:issue:`88`).
* An error is now raised when typos in object attributes are used, e.g., ``cell.nubmer`` (:issue:`508`).


**Bugs Fixed**

* Made it so that a material created from scratch can be written to file (:issue:`512`).
Expand Down
7 changes: 4 additions & 3 deletions montepy/data_inputs/material.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,17 +263,18 @@ class Material(data_input.DataInputAbstract, Numbered_MCNP_Object):
80p
00c

.. versionchanged:: 1.0.0

.. seealso::

* :manual63:`5.6.1`
* :manual62:`106`

.. versionchanged:: 1.0.0

* Added number parameter
* Added number parameter to constructor.
* This was the primary change for this release. For more details on what changed see :ref:`migrate 0 1`.
* Switched to list-like data-structure
* Added ability to search by Nuclide
* Added Support for default libraries (e.g., ``nlib=80c``).

:param input: The Input syntax object this will wrap and parse.
:type input: Union[Input, str]
Expand Down
Loading