diff --git a/CMakeLists.txt b/CMakeLists.txt index 11ee987540..f7cf5d6a3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,7 +98,7 @@ endif() file(TO_CMAKE_PATH "${CMAKE_COMMAND}" CMAKE_COMMAND_NORM) project(simplnx - VERSION 1.4.0 + VERSION 1.5.0 DESCRIPTION "SIMPLNX is a collection of C++ codes to process data, particularly Materials Science data, including EBSD data." HOMEPAGE_URL "https://github.com/bluequartzsoftware/simplnx" LANGUAGES CXX diff --git a/conda/meta.yaml b/conda/meta.yaml index f60b629a91..100b1c97c0 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,5 +1,5 @@ {% set name = "simplnx" %} -{% set version = "24.09.30" %} +{% set version = "24.11.11" %} package: name: {{ name|lower }} diff --git a/wrapping/python/docs/index_template.rst b/wrapping/python/docs/index_template.rst index dbe0d70e34..bab62dbc73 100644 --- a/wrapping/python/docs/index_template.rst +++ b/wrapping/python/docs/index_template.rst @@ -2,7 +2,7 @@ compiling additional plugins, and you want the python docs generated, you will need to add those to the list below -DREAM3D-NX Python Docs (v24.09.30) +DREAM3D-NX Python Docs (v24.11.11) =================================== .. image:: https://anaconda.org/bluequartzsoftware/dream3dnx/badges/version.svg @@ -20,6 +20,15 @@ DREAM3D-NX Python Docs (v24.09.30) Installation ---------------------- +.. attention:: + + MacOS Machines will need to export an environment variable BEFORE trying to do the + conda installer. + +.. code:: shell + + export CONDA_OVERRIDE_OSX=11.0 + The *simplnx* library can be installed through an Anaconda packages from the *BlueQuartzSoftware* channel. This can be achieved by creating a new virtual environment and installing the `dream3dnx` python package. Please check the latest release notes for the latest changes to the API. @@ -36,10 +45,6 @@ is prefixed as such. conda install -c bluequartzsoftware dream3dnx -.. attention:: - - MacOS: Intel MacOS does not support Python 3.12 due to a library conflict between Qt 6 and the other libraries. - How to use SIMPLNX from Python ------------------------------ @@ -97,6 +102,7 @@ How to use SIMPLNX from Python :maxdepth: 1 :caption: Release Notes + release_notes/ReleaseNotes_241111 release_notes/ReleaseNotes_240930 release_notes/ReleaseNotes_240803 release_notes/ReleaseNotes_240605 diff --git a/wrapping/python/docs/source/Installation.rst b/wrapping/python/docs/source/Installation.rst index 411827ee22..21f9c7f889 100644 --- a/wrapping/python/docs/source/Installation.rst +++ b/wrapping/python/docs/source/Installation.rst @@ -1,7 +1,7 @@ Installation ============ -Latest Version: 24.09.30 +Latest Version: 24.11.11 ------------------------- The *simplnx* library can be installed through an Anaconda packages from the *BlueQuartzSoftware* channel. This can be achieved @@ -10,8 +10,12 @@ by creating a new virtual environment and installing SIMPLNX into that environme .. attention:: - Intel based MacOS machines can *ONLY* install up to Python 3.11. Due to dependecies from - conda-forge, Python 3.12 is not possible as of AUG 2024. + MacOS Machines will need to export an environment variable BEFORE trying to do the + conda installer. + +.. code:: shell + + export CONDA_OVERRIDE_OSX=11.0 Full DREAM3D-NX Installation diff --git a/wrapping/python/docs/source/conf.py b/wrapping/python/docs/source/conf.py index ea8862d959..2a7d619871 100644 --- a/wrapping/python/docs/source/conf.py +++ b/wrapping/python/docs/source/conf.py @@ -9,7 +9,7 @@ project = 'SIMPLNX Python Docs' copyright = '2024, BlueQuartz Software, LLC' author = 'BlueQuartz Software, LLC' -release = '24.09.30' +release = '24.11.11' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/wrapping/python/docs/source/release_notes/ReleaseNotes_241111.rst b/wrapping/python/docs/source/release_notes/ReleaseNotes_241111.rst new file mode 100644 index 0000000000..0137e03df5 --- /dev/null +++ b/wrapping/python/docs/source/release_notes/ReleaseNotes_241111.rst @@ -0,0 +1,40 @@ +Release Notes 24.11.11 +====================== + +The `simplnx` library is under activate development and while we strive to maintain a stable API bugs are +found that necessitate the changing of the API. + +Version 24.11.11 +----------------- + + +API Changes & Additions 24.11.11 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Filters now have a version number that will be written to the pipeline file. + +Change Log 24.11.11 +^^^^^^^^^^^^^^^^^^^^ + +- REL: Update version to 1.5.0 (#1128) [2024-11-11] +- FILT: Add Oxford Channel 5 Binary file reader. (#1126) [2024-11-11] +- BUG: Now catch std::filesystem exceptions in parameters (#1127) [2024-11-11] +- DOC: Document the DREAM3D file specification (#1116) [2024-11-07] +- API: EbsdLib-1.0.34 update. (#1122) [2024-11-05] +- BUG: ReadDEFORMFileFilter-Set SharedQuadList names to proper defaults (#1120) [2024-11-04] +- ENH: Fix 3rd Party .dream3d file import and other compiler warnings & issues (#1108) [2024-11-04] +- LICENSE: Change the distribution license to AGPLv3 (#1119) [2024-10-29] +- ENH: Compute NeighborList Stats Updates (#1118) [2024-10-25] +- ENH: Map Point Cloud to Regular Grid Filter Modernization (#1109) [2024-10-22] +- BUG: WriteASCIIDataFilter-Fix bug writing multi-component arrays to multiple files (#1114) [2024-10-22] +- ENH: GitHub is removing MacOS-12 Support from their Actions. Update to MacOS-13 (#1115) [2024-10-21] +- ENH: Changes to decrease compile time (#1105) [2024-10-18] +- FILT: Add 'Read GrainMapper3D' filter (#1107) [2024-10-17] +- ENH: ITKImportImageStack Z Axis Resampling and Improvements (#1104) [2024-10-16] +- ENH: Iterative Closest Point Filter Changed to 1 Second Update Scheme (#1106) [2024-10-16] +- BUG FIX: Data object parent ids are now renumbered correctly when object id clashes are found. (#1102) [2024-10-10] +- BUG FIX: PeregrineHDF5Reader now properly flips images across the X axis. (#1103) [2024-10-10] +- FILT: ReshapeDataArrayFilter (#1097) [2024-10-09] +- COMP: Update clang format standard to C++20 (#1095) [2024-10-04] +- DOC: Updates to ConvertOrientationFilter documentation (#1096) [2024-10-04] +- REL: DREAM3D-NX Version 7.0.0-RC14 Release (#1089) [2024-10-01]