diff --git a/CHANGELOG.md b/CHANGELOG.md index d6e2e8061..03b0fcbce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [0.2.1](https://github.com/statusfy/statusfy/compare/v0.2.0...v0.2.1) (2018-12-11) + + +### Bug Fixes + +* **core:** add the Atom & RSS feeds alternate meta links ([fcffb67](https://github.com/statusfy/statusfy/commit/fcffb67)) +* **core:** display the Subscribe button if the notifications are enabled ([22e7950](https://github.com/statusfy/statusfy/commit/22e7950)) +* **core:** fix the rendering of the Subscribe modal ([34c03a2](https://github.com/statusfy/statusfy/commit/34c03a2)) + + + # [0.2.0](https://github.com/statusfy/statusfy/compare/v0.1.3...v0.2.0) (2018-12-11) diff --git a/lerna.json b/lerna.json index bf981fc29..2d9e5f95e 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "lerna": "3.4.3", "npmClient": "yarn", "useWorkspaces": true, - "version": "0.2.0" + "version": "0.2.1" } diff --git a/package.json b/package.json index 626700417..839ab3836 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.2.0", + "version": "0.2.1", "private": true, "workspaces": [ "packages/@statusfy/*", diff --git a/packages/@statusfy/cli/package.json b/packages/@statusfy/cli/package.json index 245b29bdd..ad2e6c1e4 100644 --- a/packages/@statusfy/cli/package.json +++ b/packages/@statusfy/cli/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/cli", - "version": "0.2.0", + "version": "0.2.1", "description": "CLI for Statusfy", "main": "index.js", "publishConfig": { @@ -25,8 +25,8 @@ "semver": "^5.5.0" }, "peerDependencies": { - "@statusfy/common": "0.2.0", - "@statusfy/core": "0.2.0", - "@statusfy/editor": "0.2.0" + "@statusfy/common": "0.2.1", + "@statusfy/core": "0.2.1", + "@statusfy/editor": "0.2.1" } } diff --git a/packages/@statusfy/common/package.json b/packages/@statusfy/common/package.json index 0a36d5bcf..e9bc11519 100644 --- a/packages/@statusfy/common/package.json +++ b/packages/@statusfy/common/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/common", - "version": "0.2.0", + "version": "0.2.1", "description": "Shared Utils for Statusfy", "main": "index.js", "publishConfig": { diff --git a/packages/@statusfy/core/package.json b/packages/@statusfy/core/package.json index 83621ac5d..61c7e868a 100644 --- a/packages/@statusfy/core/package.json +++ b/packages/@statusfy/core/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/core", - "version": "0.2.0", + "version": "0.2.1", "description": "Core of Statusfy", "author": { "name": "Bazzite", @@ -38,8 +38,8 @@ "@fortawesome/fontawesome-svg-core": "^1.2.5", "@nuxtjs/axios": "^5.3.3", "@nuxtjs/pwa": "^2.5.0", - "@statusfy/common": "0.2.0", - "@statusfy/markdown": "0.2.0", + "@statusfy/common": "0.2.1", + "@statusfy/markdown": "0.2.1", "body-parser": "^1.18.3", "browser-sync": "^2.26.0", "cors": "^2.8.4", @@ -76,7 +76,7 @@ "devDependencies": { "@babel/core": "^7.1.2", "@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0", - "@statusfy/test-utils": "0.2.0", + "@statusfy/test-utils": "0.2.1", "babel-core": "^7.0.0-0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", diff --git a/packages/@statusfy/core/test/config/__snapshots__/nuxt.spec.js.snap b/packages/@statusfy/core/test/config/__snapshots__/nuxt.spec.js.snap index cf7e8cf3b..4859f642e 100644 --- a/packages/@statusfy/core/test/config/__snapshots__/nuxt.spec.js.snap +++ b/packages/@statusfy/core/test/config/__snapshots__/nuxt.spec.js.snap @@ -91,7 +91,7 @@ Object { "publicPath": "/static/", "short_name": "Short Title", "start_url": "/?standalone=true&utm_source=web_app&utm_medium=pwa", - "version": "0.2.0", + "version": "0.2.1", }, "meta": Object { "author": "Statusfy", @@ -267,7 +267,7 @@ Object { "title": "Long Title", }, "sourceDir": "../.tmp/advanced", - "version": "0.2.0", + "version": "0.2.1", }, "workbox": Object { "_runtimeCaching": Array [ @@ -375,7 +375,7 @@ Object { "publicPath": "/static/", "short_name": "Title", "start_url": "/?standalone=true&utm_source=web_app&utm_medium=pwa", - "version": "0.2.0", + "version": "0.2.1", }, "meta": Object { "author": "Statusfy", @@ -501,7 +501,7 @@ Object { "title": "Title", }, "sourceDir": "../.tmp/cli", - "version": "0.2.0", + "version": "0.2.1", }, "workbox": Object { "_runtimeCaching": Array [ @@ -720,7 +720,7 @@ Object { "title": "Title", }, "sourceDir": "../.tmp/simple", - "version": "0.2.0", + "version": "0.2.1", }, } `; @@ -809,7 +809,7 @@ Object { "publicPath": "/static/", "short_name": "Título", "start_url": "/?standalone=true&utm_source=web_app&utm_medium=pwa", - "version": "0.2.0", + "version": "0.2.1", }, "meta": Object { "author": "Statusfy", @@ -953,7 +953,7 @@ Object { "title": "Título", }, "sourceDir": "../.tmp/spanish", - "version": "0.2.0", + "version": "0.2.1", }, "workbox": Object { "_runtimeCaching": Array [ diff --git a/packages/@statusfy/editor/package.json b/packages/@statusfy/editor/package.json index b328caa11..4c09ef229 100644 --- a/packages/@statusfy/editor/package.json +++ b/packages/@statusfy/editor/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/editor", - "version": "0.2.0", + "version": "0.2.1", "description": "Editor for Statusfy", "main": "index.js", "publishConfig": { diff --git a/packages/@statusfy/markdown/package.json b/packages/@statusfy/markdown/package.json index 012042a8e..0a651d7e1 100644 --- a/packages/@statusfy/markdown/package.json +++ b/packages/@statusfy/markdown/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/markdown", - "version": "0.2.0", + "version": "0.2.1", "description": "Markdown Parser for Statusfy", "main": "index.js", "publishConfig": { @@ -21,12 +21,12 @@ }, "homepage": "https://github.com/bazzite/statusfy#readme", "dependencies": { - "@statusfy/common": "0.2.0", + "@statusfy/common": "0.2.1", "markdown-it": "^8.4.1", "markdown-it-container": "^2.0.0", "markdown-it-emoji": "^1.4.0" }, "devDependencies": { - "@statusfy/test-utils": "0.2.0" + "@statusfy/test-utils": "0.2.1" } } diff --git a/packages/@statusfy/test-utils/package.json b/packages/@statusfy/test-utils/package.json index 5ec598186..ec8fd0fd8 100644 --- a/packages/@statusfy/test-utils/package.json +++ b/packages/@statusfy/test-utils/package.json @@ -1,6 +1,6 @@ { "name": "@statusfy/test-utils", - "version": "0.2.0", + "version": "0.2.1", "description": "Test Utils for Statusfy", "publishConfig": { "access": "public" diff --git a/packages/demo/package.json b/packages/demo/package.json index 005a83599..692e6ef83 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "statusfy-demo", - "version": "0.2.0", + "version": "0.2.1", "description": "Statusfy demo", "scripts": { "prepare": "node scripts/prepare.js", @@ -18,7 +18,7 @@ }, "license": "Apache-2.0", "dependencies": { - "statusfy": "0.2.0" + "statusfy": "0.2.1" }, "engines": { "node": ">=8.10", diff --git a/packages/demo/test/__snapshots__/build-generate.spec.js.snap b/packages/demo/test/__snapshots__/build-generate.spec.js.snap index 1ef488481..0ca21f7b1 100644 --- a/packages/demo/test/__snapshots__/build-generate.spec.js.snap +++ b/packages/demo/test/__snapshots__/build-generate.spec.js.snap @@ -48,6 +48,6 @@ Object { "short_name": "System Status", "start_url": "/?standalone=true&utm_source=web_app&utm_medium=pwa", "theme_color": "#1b1f23", - "version": "0.2.0", + "version": "0.2.1", } `; diff --git a/packages/docs/package.json b/packages/docs/package.json index e73068077..e89c879b6 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "statusfy-docs", - "version": "0.2.0", + "version": "0.2.1", "description": "Statusfy Documentation", "license": "Apache-2.0", "main": "index.js", @@ -31,7 +31,7 @@ }, "homepage": "https://docs.statusfy.co", "devDependencies": { - "@statusfy/common": "0.2.0", + "@statusfy/common": "0.2.1", "axios": "^0.18.0", "consola": "^2.3.0", "fs-extra": "^7.0.1", diff --git a/packages/docs/src/es/guide/pwa.md b/packages/docs/src/es/guide/pwa.md index 339235c87..ddde49861 100644 --- a/packages/docs/src/es/guide/pwa.md +++ b/packages/docs/src/es/guide/pwa.md @@ -77,7 +77,7 @@ Statusfy crea un [Manifiesto de Aplicación Web](https://developers.google.com/w "background_color": "#ffffff", "theme_color": "#1b1f23", "lang": "en", - "version": "0.2.0" + "version": "0.2.1" } ``` diff --git a/packages/docs/src/guide/pwa.md b/packages/docs/src/guide/pwa.md index f79b8a223..458906be2 100644 --- a/packages/docs/src/guide/pwa.md +++ b/packages/docs/src/guide/pwa.md @@ -72,7 +72,7 @@ Statusfy creates a valid [Web App Manifest](https://developers.google.com/web/fu "background_color": "#ffffff", "theme_color": "#1b1f23", "lang": "en", - "version": "0.2.0" + "version": "0.2.1" } ``` diff --git a/packages/statusfy/README.md b/packages/statusfy/README.md index bef02a0ff..29fa23ea5 100644 --- a/packages/statusfy/README.md +++ b/packages/statusfy/README.md @@ -2,9 +2,6 @@ - - - @@ -17,12 +14,6 @@ - - - - - -
diff --git a/packages/statusfy/package.json b/packages/statusfy/package.json index d07fbbb14..b7e50c53b 100644 --- a/packages/statusfy/package.json +++ b/packages/statusfy/package.json @@ -1,6 +1,6 @@ { "name": "statusfy", - "version": "0.2.0", + "version": "0.2.1", "description": "A marvelous open source Status Page system", "author": { "name": "Bazzite", @@ -32,9 +32,9 @@ ], "dependencies": { "@nuxtjs/opencollective": "^0.2.0", - "@statusfy/cli": "0.2.0", - "@statusfy/core": "0.2.0", - "@statusfy/editor": "0.2.0" + "@statusfy/cli": "0.2.1", + "@statusfy/core": "0.2.1", + "@statusfy/editor": "0.2.1" }, "engines": { "node": ">=8.10", diff --git a/packages/website/package.json b/packages/website/package.json index d3bfadf1d..286640a36 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "statusfy-website", - "version": "0.2.0", + "version": "0.2.1", "description": "Website for Statusfy", "author": { "name": "Bazzite", @@ -23,7 +23,7 @@ "@nuxtjs/google-analytics": "^2.0.2", "@nuxtjs/pwa": "^2.6.0", "@nuxtjs/sitemap": "^0.1.1", - "@statusfy/common": "0.2.0", + "@statusfy/common": "0.2.1", "animate.css": "^3.7.0", "consola": "^2.3.0", "date-fns": "1.29.0",