diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a1348fc..d110d716 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,51 @@ + +# v0.12.0 +_2018-08-06_ - [Downloads for v0.12.0](https://github.com/okkur/syna/releases/tag/v0.12.0) - [Changelog since v0.11.0](#changes-since-v011) ## Documentation for v0.12.0 -[Documentation](/tree/v0.11.0/docs) +[Documentation](/tree/v0.12.0/docs) +[Getting started](/tree/v0.12.0/docs#using-starter) ## Changes since v0.11.0 + - BREAKING: `content-single` and `content-split` merged into `content` fragment + - BREAKING: Moving to `_index` and `_global` as special directories and headless bundles + - BREAKING: Subpath handling made consistent with Hugo + - New: `header` fragment for easier section bundling and linking + - New: `portfolio` fragment to showcase projects etc. + - New: Categories for `content` fragment + - `member`: Company affiliation for single member mode + - `member`: Redesign single member mode + - Getting started guide + - Update documentation + - Bundle JS files and register them within each fragment + - `404`: Refactor 404 to be fragment based ## Fixes since v0.11.0 + - Improve naming consistency + - Cleanup bootstrap files + - Add attribution for inspiration + - `table`: Align table cells using `align` variable + - `items`: Remove icon, if not set + - `item/table`: Fix icon + url + - `item`: Fix align = center --- diff --git a/VERSION b/VERSION index fd2726c9..87a1cf59 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.11.0 +v0.12.0 diff --git a/docs/README.md b/docs/README.md index 65884f76..be309e34 100644 --- a/docs/README.md +++ b/docs/README.md @@ -52,7 +52,7 @@ This way whenever you want to update the theme you can just pull the updates and git submodule init # If you haven't initialized before git submodule add https://github.com/okkur/syna.git themes/syna cd themes/syna -git checkout v0.11.0 # Latest release as of now is v0.11.0 +git checkout v0.12.0 # Latest release as of now is v0.12.0 ``` ### Using starter diff --git a/exampleSite/config.toml b/exampleSite/config.toml index e8291f10..3cfe067d 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -6,7 +6,7 @@ title = "Okkur - Syna" theme = "syna" themesDir = "../.." enableGitInfo = true -version = "0.11.0" +version = "0.12.0" disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] [frontmatter] diff --git a/exampleSite/content/_index/section-header.md b/exampleSite/content/_index/section-header.md index c9e02ce4..dc1bfff5 100644 --- a/exampleSite/content/_index/section-header.md +++ b/exampleSite/content/_index/section-header.md @@ -1,6 +1,6 @@ +++ date = "2018-07-13" -fragment = "section-header" +fragment = "header" weight = 500 background = "white" diff --git a/layouts/partials/fragments/section-header.html b/layouts/partials/fragments/header.html similarity index 100% rename from layouts/partials/fragments/section-header.html rename to layouts/partials/fragments/header.html diff --git a/package.json b/package.json index 1bea4996..b3b26464 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "syna", - "version": "0.8.0", + "version": "0.12.0", "description": "Highly customizable open source theme for Hugo based static websites", "main": "static-main", "repository": "git@github.com:okkur/syna.git",