Add Reorder to changelog

Partially resolves ONCPUML-1232

Signed-off-by: David Svantesson <david.svantesson@arm.com>
Change-Id: I258d03524c50dd24975b473aede061f80bf9d91b
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9534
Reviewed-by: SiCong Li <sicong.li@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Benchmark: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/Android.bp b/Android.bp
index 83b971b..143e130 100644
--- a/Android.bp
+++ b/Android.bp
@@ -964,7 +964,7 @@
         "src/runtime/NEON/functions/NERange.cpp",
         "src/runtime/NEON/functions/NEReduceMean.cpp",
         "src/runtime/NEON/functions/NEReductionOperation.cpp",
-        "src/runtime/NEON/functions/NEReorder.cpp",
+        "src/runtime/NEON/functions/NEReorderLayer.cpp",
         "src/runtime/NEON/functions/NEReorgLayer.cpp",
         "src/runtime/NEON/functions/NEReshapeLayer.cpp",
         "src/runtime/NEON/functions/NEReverse.cpp",
diff --git a/docs/user_guide/release_version_and_change_log.dox b/docs/user_guide/release_version_and_change_log.dox
index ddbeffd..f5d362b 100644
--- a/docs/user_guide/release_version_and_change_log.dox
+++ b/docs/user_guide/release_version_and_change_log.dox
@@ -43,6 +43,8 @@
 v23.05 Public major release
  - Deprecate dynamic block shape in @ref NEBatchToSpaceLayer
  - Deprecate dynamic block shape in @ref CLBatchToSpaceLayer
+ - New Arm® Neon™ kernels / functions :
+   - @ref NEReorderLayer
 
 v23.02.1 Public patch release
  - Allow mismatching data layouts between the source tensor and weights for \link cpu::CpuGemmDirectConv2d CpuGemmDirectConv2d \endlink with fixed format kernels.
diff --git a/filelist.json b/filelist.json
index 52e29ef..efb0182 100644
--- a/filelist.json
+++ b/filelist.json
@@ -2080,7 +2080,7 @@
       "Reorder": {
         "files": {
           "common": [
-            "src/runtime/NEON/functions/NEReorder.cpp",
+            "src/runtime/NEON/functions/NEReorderLayer.cpp",
             "src/core/NEON/kernels/NEReorderKernel.cpp"
           ]
         }
diff --git a/src/BUILD.bazel b/src/BUILD.bazel
index 6e73f2e..44a1e83 100644
--- a/src/BUILD.bazel
+++ b/src/BUILD.bazel
@@ -954,7 +954,7 @@
 	"runtime/NEON/functions/NERange.cpp",
 	"runtime/NEON/functions/NEReduceMean.cpp",
 	"runtime/NEON/functions/NEReductionOperation.cpp",
-	"runtime/NEON/functions/NEReorder.cpp",
+	"runtime/NEON/functions/NEReorderLayer.cpp",
 	"runtime/NEON/functions/NEReorgLayer.cpp",
 	"runtime/NEON/functions/NEReshapeLayer.cpp",
 	"runtime/NEON/functions/NEReverse.cpp",
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 35d1d99..cb48692 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -946,7 +946,7 @@
 	runtime/NEON/functions/NERange.cpp
 	runtime/NEON/functions/NEReduceMean.cpp
 	runtime/NEON/functions/NEReductionOperation.cpp
-	runtime/NEON/functions/NEReorder.cpp
+	runtime/NEON/functions/NEReorderLayer.cpp
 	runtime/NEON/functions/NEReorgLayer.cpp
 	runtime/NEON/functions/NEReshapeLayer.cpp
 	runtime/NEON/functions/NEReverse.cpp
diff --git a/src/runtime/NEON/functions/NEReorder.cpp b/src/runtime/NEON/functions/NEReorderLayer.cpp
similarity index 100%
rename from src/runtime/NEON/functions/NEReorder.cpp
rename to src/runtime/NEON/functions/NEReorderLayer.cpp