Redesign Patchnotes
* Introduced the [`ux.UxDataset`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.UxDataset.html#uxarray.UxDataset) and [`ux.UxDataArray`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.UxDataArray.html#uxarray.UxDataArray) data structures
- Inherits the equivalent Xarray data structures to provide a grid-informed implementation
- Contains an instance of a [`Grid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.Grid.html#uxarray.Grid) class stored as an attribute ([`.uxgrid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.UxDataset.uxgrid.html#uxarray.UxDataset.uxgrid)), which represents the unstructured grid that the data variables lie on
- Some inherited methods have been overloaded to properly maintain the [`uxgrid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.UxDataset.uxgrid.html#uxarray.UxDataset.uxgrid) property
* Custom I/O methods for loading in grid and data files
- [`ux.open_grid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.open_grid.html#uxarray.open_grid)
- [`ux.open_dataset`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.open_dataset.html#uxarray.open_dataset)
- [`ux.open_mfdataset`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.open_mfdataset.html#uxarray.open_mfdataset)
* Quality of Life changes to [`ux.Grid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.Grid.html#uxarray.Grid)
- Grid Dimensions, Coordinates, and Connectivity Variables are now represented as properties instead of standard attributes with appropriate docstrings and calls to construction methods if a variable is not present in the dataset (detailed overview [here](https://uxarray.readthedocs.io/en/latest/user_api/index.html#id6))
- `==` and `!=` operators for comparing the contents of two grids
- Can now perform a deep copy of a [`Grid`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.Grid.html#uxarray.Grid) using [`Grid.copy`](https://uxarray.readthedocs.io/en/latest/user_api/_autosummary/uxarray.Grid.copy.html#uxarray.Grid.copy)
* Notebooks
- [Working with Unstructured Grid Data](https://uxarray.readthedocs.io/en/latest/examples/001-working-with-unstructured-grids.html) and [Grid Topology Overview](https://uxarray.readthedocs.io/en/latest/examples/002-grid-topology.html) notebooks have been overhauled to document and showcase the redesign
Merged Pull Requests
* Redesign prototype by erogluorhan in https://github.com/UXARRAY/uxarray/pull/215
* Redesign by erogluorhan in https://github.com/UXARRAY/uxarray/pull/217
* reorganize files into folders, fix tests and docs by rajeeja in https://github.com/UXARRAY/uxarray/pull/224
* Fix prototype docs by anissa111 in https://github.com/UXARRAY/uxarray/pull/227
* `==` and `!=` Operators for Grid Object by philipc2 in https://github.com/UXARRAY/uxarray/pull/231
* `Info` Method for `ux.Dataset` by philipc2 in https://github.com/UXARRAY/uxarray/pull/236
* slots warning fix by rajeeja in https://github.com/UXARRAY/uxarray/pull/235
* Add `use_dual` Parameter to Redesign API by philipc2 in https://github.com/UXARRAY/uxarray/pull/260
* Bump actions/setup-python from 4.6.0 to 4.6.1 by dependabot in https://github.com/UXARRAY/uxarray/pull/329
* Represent Dual Mesh as a Mixed Topology Grid by philipc2 in https://github.com/UXARRAY/uxarray/pull/331
* Removed Redundant Code for Representing Dual Meshes by ifranda in https://github.com/UXARRAY/uxarray/pull/334
* Implement Version Attribute by aaronzedwick in https://github.com/UXARRAY/uxarray/pull/333
* Improved Access & Representation of UGRID Topology Variables by philipc2 in https://github.com/UXARRAY/uxarray/pull/325
* Update Documentation & Clean-Up Code for Redesign by philipc2 in https://github.com/UXARRAY/uxarray/pull/336
* Redesign by erogluorhan in https://github.com/UXARRAY/uxarray/pull/216
New Contributors
* ifranda made their first contribution in https://github.com/UXARRAY/uxarray/pull/334
* aaronzedwick made their first contribution in https://github.com/UXARRAY/uxarray/pull/333
**Full Changelog**: https://github.com/UXARRAY/uxarray/compare/v2023.05.0...v2023.06.0