Skip to content
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