diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 63f663e1..00000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,64 +0,0 @@
-## Jan 28th 2018
-
-- Fixed keyboard shortcuts on Windows
-- Fixed slack slash command and improved results formatting in Slack
-- Fixed headings now have stable anchors for external linking
-- Fixed several JS issues in the editor
-- Improved toolbar behavior for link editing
-
----
-
-## Jan 23rd 2018
-
-- Added 'about' page
-- Added dynamic prefetching of scripts for improved performance
-- Added more meta tags
-- Added new onboarding document
-
----
-
-## Jan 15th 2018
-
-- Fixed loading placeholders styling
-- Added members view to settings pages
-- Dynamic loading of editor JS for first load performance
-- Added event bus for future integrations
-- Improved handling of malformed links
-
----
-
-## Jan 6th, 2018
-
-- Improved the floating toolbar behavior in the editor
-- Added blockquote button to formatting toolbar
-- Fixed saving a new document no longer redirects to read-only mode
-- Fixed an exception when visiting a document without being signed in
-- Fixed a problem with invalid urls causing errors
-
----
-
-## Dec 18th, 2017
-
-- We now support automatic unfurling of Outline links posted to Slack
-- Added privacy policy for the hosted version at getoutline.com
-- Added ability to update profile picture in the settings
-
----
-
-## Dec 11th, 2017
-
-- Added ability to develop locally in Docker. This is now the preferred way to work on Outline.
-- Various improvements and fixes to search
-
----
-
-## Nov 28th, 2017
-
-- Added the changelog you’re looking at!
-- Fixed some issues with collection homepage
-
----
-
-## Nov 23rd, 2017
-
-- Initial open source release.
diff --git a/server/pages/Changelog.js b/server/pages/Changelog.js
index abb37d10..2caf0b87 100644
--- a/server/pages/Changelog.js
+++ b/server/pages/Changelog.js
@@ -1,5 +1,6 @@
// @flow
import * as React from 'react';
+import format from 'date-fns/format';
import styled from 'styled-components';
import Grid from 'styled-components-grid';
import ReactMarkdown from 'react-markdown';
@@ -7,7 +8,14 @@ import { Helmet } from 'react-helmet';
import Header from './components/Header';
import { color } from '../../shared/styles/constants';
-function Changelog({ body }: { body: string }) {
+type Release = {
+ id: string,
+ name: string,
+ body: string,
+ created_at: string,
+};
+
+function Changelog({ releases }: { releases: Release[] }) {
return (