diff --git a/changes/changelog.d/1013.enhancement b/changes/changelog.d/1013.enhancement
new file mode 100644
index 0000000000000000000000000000000000000000..e8e789495491c82501400a1dfa246a4a8a6078ed
--- /dev/null
+++ b/changes/changelog.d/1013.enhancement
@@ -0,0 +1 @@
+Added the ability to sort albums by release date (#1013)
\ No newline at end of file
diff --git a/front/src/components/library/Albums.vue b/front/src/components/library/Albums.vue
index 8508762cc32aeab64ebeb1f0f2b6886f04763314..64104200052e7d56b4fcc50be9bac0e131d68f88 100644
--- a/front/src/components/library/Albums.vue
+++ b/front/src/components/library/Albums.vue
@@ -124,7 +124,7 @@ export default {
       page: parseInt(this.defaultPage),
       query: this.defaultQuery,
       tags: (this.defaultTags || []).filter((t) => { return t.length > 0 }),
-      orderingOptions: [["creation_date", "creation_date"], ["title", "album_title"]]
+      orderingOptions: [["creation_date", "creation_date"], ["title", "album_title"],["release_date","release_date"]]
     }
   },
   created() {