diff --git a/CHANGES b/CHANGES index 9b20339..0ae7b4d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,20 @@ +Version 2.0.0 - 2017-12-12 +- Read/compile sass and scss (#37) +- Replace var (#34) +- Replace yarn with npm5 +- Use standard format +- Implement hugulp next +- Add init command +- Clean up & add logging +- Code refactoring +- Add missing package +- Update docs for v2 +- Implements next +- Remove v1 code +- Fix inclusion of production files +- Use vscode instead of atom + + Version 1.4.0 - 2017-11-27 - Add docker support (#24) - Minifyhtml (#31) diff --git a/VERSION b/VERSION index 88c5fb8..227cea2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.0 +2.0.0 diff --git a/metadata/changes/2.0.0.txt b/metadata/changes/2.0.0.txt new file mode 100644 index 0000000..f81e6b8 --- /dev/null +++ b/metadata/changes/2.0.0.txt @@ -0,0 +1,9 @@ +2017-12-12 - 2.0.0 + +This is a re-thinking of hugulp, in order to be more flexible and better support hugo's features. + +hugulp now works as a post-processor, optimizing the output that hugo generates in the public folder. + +You can now invoke hugo from the command line as it best suits you and use any theme you want. + +Check the README for v2 docs. diff --git a/package-lock.json b/package-lock.json index e646a18..4701f57 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "hugulp", - "version": "1.4.0", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a18f386..846ba7d 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,11 @@ { "name": "hugulp", - "version": "1.4.0", + "version": "2.0.0", "description": "website", - "files": ["index.js", "gulp"], + "files": [ + "index.js", + "gulp" + ], "bin": { "hugulp": "./index.js" },