From 837c6ed23a2f9aea17e2a7ad284e286ee4f195be Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Fri, 11 May 2018 15:10:49 +0200 Subject: [PATCH 1/2] 6.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ce81a847..48de02a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "next", - "version": "6.0.1-canary.2", + "version": "6.0.1", "description": "Minimalistic framework for server-rendered React applications", "main": "./dist/server/next.js", "license": "MIT", From 16ff96b107651198ab3bc61fb19f2af0d92495b1 Mon Sep 17 00:00:00 2001 From: Karthik Muralidharan Date: Sat, 12 May 2018 01:38:42 +0530 Subject: [PATCH 2/2] rename; Clock.js to clock (#4342) Fixes the compilation error : ``` * ./clock in ./components/examples.js ModuleNotFoundError: Module not found: Error: [CaseSensit ivePathsPlugin] `/components/clock.js` does not matc h the corresponding path on disk `Clock.js`. ``` --- examples/with-redux/components/{Clock.js => clock.js} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename examples/with-redux/components/{Clock.js => clock.js} (100%) diff --git a/examples/with-redux/components/Clock.js b/examples/with-redux/components/clock.js similarity index 100% rename from examples/with-redux/components/Clock.js rename to examples/with-redux/components/clock.js