diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 008f84fb2f5cd99a7109ec1b0d6c36f7799cd208..d8db111dd733febc150d83249fac0e40ad5685e7 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.1.0"></a> +# [2.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet@2.0.0...pubsweet@2.1.0) (2018-03-05) + + +### Bug Fixes + +* **cli:** fix loop for making cmd list ([51ebd3b](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/51ebd3b)), closes [#107](https://gitlab.coko.foundation/pubsweet/pubsweet/issues/107) [#114](https://gitlab.coko.foundation/pubsweet/pubsweet/issues/114) + + +### Features + +* **cli:** show help when unknown command is used ([7a92e1e](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/7a92e1e)), closes [#107](https://gitlab.coko.foundation/pubsweet/pubsweet/issues/107) [#114](https://gitlab.coko.foundation/pubsweet/pubsweet/issues/114) + + + + <a name="2.0.0"></a> # [2.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet@1.1.9...pubsweet@2.0.0) (2018-02-23) diff --git a/packages/cli/package.json b/packages/cli/package.json index 3c7e54bd92f4b00a805a28f7e5235d7798edf268..e4ce3e994f771972fa73a5bc16ef2d15ae593505 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet", - "version": "2.0.0", + "version": "2.1.0", "description": "Pubsweet command-line interface, app generator and manager", "bin": "./bin/pubsweet.js", "scripts": { diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 054e49d81adb73e3ea1a0793add850ee8ea3bb34..8656142db604077faa3de1f160a2c5eac6ac4afe 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.2.0"></a> +# [2.2.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-client@2.1.1...pubsweet-client@2.2.0) (2018-03-05) + + +### Bug Fixes + +* downgrade styled-components dependency in pubsweet-client ([718558e](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/718558e)) +* update Root to use new StyleRoot component ([9d4c0ef](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9d4c0ef)) + + +### Features + +* **normalize:** add normalize css ([9eb24e5](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9eb24e5)) +* **ui:** add theming to Tags ([ee959d2](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ee959d2)) + + + + <a name="2.1.1"></a> ## [2.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-client@2.1.0...pubsweet-client@2.1.1) (2018-02-16) diff --git a/packages/client/package.json b/packages/client/package.json index 0a127e4003bc9f535fec3b01e37210c86624016a..a9cc14553170abbc28d11247489ecb871612d6c7 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-client", - "version": "2.1.1", + "version": "2.2.0", "main": "src/index.js", "scripts": { "compile": "babel -d lib/ src/", @@ -60,7 +60,9 @@ "testRegex": "/test/.+test.jsx?$", "collectCoverage": true, "setupTestFrameworkScriptFile": "<rootDir>/test/jest-setup.js", - "collectCoverageFrom": ["src/**/*.{js,jsx}"], + "collectCoverageFrom": [ + "src/**/*.{js,jsx}" + ], "globals": { "window": {} } diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 805ab7513cb810ff3e670efac1f369326197e8f7..975241ebaac5c1fa59754b184cdbb49d64a4a46b 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,41 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="3.0.0"></a> +# [3.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-components@2.0.1...pubsweet-components@3.0.0) (2018-03-05) + + +### Bug Fixes + +* restore FormGroup to its previous state, for later deletion ([3135ffd](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3135ffd)) +* **components:** add dependency on pubsweet/ui ([f0a1926](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/f0a1926)) +* **components:** correctly redirect when edit button is clicked ([faca509](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/faca509)) +* **components:** login example ([6dfd66c](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/6dfd66c)) +* **components:** login tests were failing after refactor ([62be047](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/62be047)) +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) +* **components:** PasswordReset was still using a CSS variable ([e1c2c84](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e1c2c84)) +* **components:** signup and login error examples ([3f991ec](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3f991ec)) +* **components:** styleguide can render components using validations ([93df7af](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/93df7af)) + + +### Code Refactoring + +* **ui:** tidy AppBar ([09751b6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/09751b6)) + + +### Features + +* **elife-theme:** add elife theme ([e406e0d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e406e0d)) + + +### BREAKING CHANGES + +* **ui:** * navLinks prop is now navLinkComponents and expects an array of +elements + + + + <a name="2.0.1"></a> ## [2.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-components@2.0.0...pubsweet-components@2.0.1) (2018-02-23) diff --git a/packages/components/package.json b/packages/components/package.json index e8d30bd86a056e7967c866f832c016ca3a4b1e06..2c8d1a40474a05db23d9f7b8121d7ccbf98e3f59 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-components", - "version": "2.0.1", + "version": "3.0.0", "private": true, "scripts": { "styleguide": "styleguidist server", @@ -8,7 +8,7 @@ }, "devDependencies": { "@pubsweet/logger": "^0.2.1", - "@pubsweet/styleguide": "^1.0.0", + "@pubsweet/styleguide": "^1.1.0", "babel-cli": "^6.26.0", "babel-eslint": "^8.0.3", "babel-loader": "^7.1.2", @@ -28,8 +28,8 @@ "joi-browser": "^13.0.1", "lerna": "^2.5.1", "node-sass": "^4.5.3", - "pubsweet": "^2.0.0", - "pubsweet-client": "^2.1.1", + "pubsweet": "^2.1.0", + "pubsweet-client": "^2.2.0", "pubsweet-server": "^2.0.0", "pubsweet-theme-plugin": "^0.0.3", "react": "^16.2.0", @@ -59,6 +59,5 @@ "config/" ], "setupTestFrameworkScriptFile": "<rootDir>/test/jest-setup.js" - }, - "dependencies": {} + } } diff --git a/packages/components/packages/Blog/CHANGELOG.md b/packages/components/packages/Blog/CHANGELOG.md index 87ccbaa287738b1f9b6573aa97f9ba03e517abbc..b091bc3a81f3ac16a811f9e6c6908378d378e922 100644 --- a/packages/components/packages/Blog/CHANGELOG.md +++ b/packages/components/packages/Blog/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.0.2"></a> +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-blog@1.0.1...pubsweet-component-blog@1.0.2) (2018-03-05) + + +### Bug Fixes + +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) + + + + <a name="1.0.1"></a> ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-blog@1.0.0...pubsweet-component-blog@1.0.1) (2018-02-16) diff --git a/packages/components/packages/Blog/package.json b/packages/components/packages/Blog/package.json index 634d61879ebba04c68a8fc897fddfb79e7acd750..ed45f3fb40eaabcd03358f81bdffa7d78269d795 100644 --- a/packages/components/packages/Blog/package.json +++ b/packages/components/packages/Blog/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-blog", - "version": "1.0.1", + "version": "1.0.2", "description": "Basic blog component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/packages/Draft.js/CHANGELOG.md b/packages/components/packages/Draft.js/CHANGELOG.md index 265c0e4d8d021e8c41e8aa4cfcfa369f9ac0b9b3..757cc4dc53fcc06aa6c3954ca93b1fdf53949160 100644 --- a/packages/components/packages/Draft.js/CHANGELOG.md +++ b/packages/components/packages/Draft.js/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="0.3.5"></a> +## [0.3.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-draft@0.3.4...pubsweet-component-draft@0.3.5) (2018-03-05) + + +### Bug Fixes + +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) + + + + <a name="0.3.4"></a> ## [0.3.4](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-draft@0.3.3...pubsweet-component-draft@0.3.4) (2018-02-16) diff --git a/packages/components/packages/Draft.js/package.json b/packages/components/packages/Draft.js/package.json index f6572ddcde2eb1d8574c6daf32b62aedf81ce726..3b00786263dfbc24122fe1ea326698c9cdf31484 100644 --- a/packages/components/packages/Draft.js/package.json +++ b/packages/components/packages/Draft.js/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-draft", - "version": "0.3.4", + "version": "0.3.5", "description": "Basic Draft.js component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/packages/FormGroup/CHANGELOG.md b/packages/components/packages/FormGroup/CHANGELOG.md index 7f369c3b6adbdb1d442c68f853b2b4cf685a73d7..69bec1af3080d95849d1aab2440b74f303258310 100644 --- a/packages/components/packages/FormGroup/CHANGELOG.md +++ b/packages/components/packages/FormGroup/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.1.0"></a> +# [1.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-form-group@1.0.2...pubsweet-component-form-group@1.1.0) (2018-03-05) + + +### Bug Fixes + +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) +* **components:** styleguide can render components using validations ([93df7af](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/93df7af)) +* restore FormGroup to its previous state, for later deletion ([3135ffd](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3135ffd)) + + +### Features + +* **elife-theme:** add elife theme ([e406e0d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e406e0d)) + + + + <a name="1.0.2"></a> ## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-form-group@1.0.1...pubsweet-component-form-group@1.0.2) (2018-02-23) diff --git a/packages/components/packages/FormGroup/package.json b/packages/components/packages/FormGroup/package.json index cce9db55154da37cecbafe9164c1123b4c16dc8b..7ce02177351ef13d3db07519d6ece7d60c69bd13 100644 --- a/packages/components/packages/FormGroup/package.json +++ b/packages/components/packages/FormGroup/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-form-group", - "version": "1.0.2", + "version": "1.1.0", "description": "Form component with validation support for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/packages/HTML/CHANGELOG.md b/packages/components/packages/HTML/CHANGELOG.md index 54717ad1ec46fe430c2f659623a67ede6facea87..d9587321e7bea60d0c0375038f20fd260cb9d7c8 100644 --- a/packages/components/packages/HTML/CHANGELOG.md +++ b/packages/components/packages/HTML/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="0.2.6"></a> +## [0.2.6](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-html@0.2.5...pubsweet-component-html@0.2.6) (2018-03-05) + + +### Bug Fixes + +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) + + + + <a name="0.2.5"></a> ## [0.2.5](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-html@0.2.4...pubsweet-component-html@0.2.5) (2018-02-16) diff --git a/packages/components/packages/HTML/package.json b/packages/components/packages/HTML/package.json index d5b82353c8f15f1029e521f1ab5412e467c295ec..a19eab63df90e1425ca1341264f56b2a4cfb3027 100644 --- a/packages/components/packages/HTML/package.json +++ b/packages/components/packages/HTML/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-html", - "version": "0.2.5", + "version": "0.2.6", "description": "PubSweet component that displays the HTML of a fragment", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/packages/Login/CHANGELOG.md b/packages/components/packages/Login/CHANGELOG.md index 74c89f73caca2c9376f0a29325a7f2dd9dc0ff6b..7f3113ad61051105502c8d479511241baa3f6168 100644 --- a/packages/components/packages/Login/CHANGELOG.md +++ b/packages/components/packages/Login/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.1.0"></a> +# [1.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-login@1.0.1...pubsweet-component-login@1.1.0) (2018-03-05) + + +### Bug Fixes + +* **components:** login example ([6dfd66c](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/6dfd66c)) +* **components:** login tests were failing after refactor ([62be047](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/62be047)) +* **components:** signup and login error examples ([3f991ec](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3f991ec)) + + +### Features + +* **elife-theme:** add elife theme ([e406e0d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e406e0d)) + + + + <a name="1.0.1"></a> ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-login@1.0.0...pubsweet-component-login@1.0.1) (2018-02-08) diff --git a/packages/components/packages/Login/package.json b/packages/components/packages/Login/package.json index f6dc45d29727e65fff9c76989bb97455613fa4e5..d3443728649a8f389c2c67aa1750bb3cbdc50274 100644 --- a/packages/components/packages/Login/package.json +++ b/packages/components/packages/Login/package.json @@ -1,6 +1,6 @@ { "name": "pubsweet-component-login", - "version": "1.0.1", + "version": "1.1.0", "description": "Basic login component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", diff --git a/packages/components/packages/PasswordResetFrontend/CHANGELOG.md b/packages/components/packages/PasswordResetFrontend/CHANGELOG.md index 93e430cb49508b3cb5221803c73cccf4598cb510..dbfa1a911d71a3a24dc7d264d9da57d38c00b195 100644 --- a/packages/components/packages/PasswordResetFrontend/CHANGELOG.md +++ b/packages/components/packages/PasswordResetFrontend/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.0.2"></a> +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-frontend@1.0.1...pubsweet-component-password-reset-frontend@1.0.2) (2018-03-05) + + +### Bug Fixes + +* **components:** PasswordReset was still using a CSS variable ([e1c2c84](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e1c2c84)) + + + + <a name="1.0.1"></a> ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-password-reset-frontend@1.0.0...pubsweet-component-password-reset-frontend@1.0.1) (2018-02-16) diff --git a/packages/components/packages/PasswordResetFrontend/package.json b/packages/components/packages/PasswordResetFrontend/package.json index 278165dc6129489380802354c5e773582eb00030..69c27bfa939e3d033d6378aa7907d318d3a90b43 100644 --- a/packages/components/packages/PasswordResetFrontend/package.json +++ b/packages/components/packages/PasswordResetFrontend/package.json @@ -1,12 +1,12 @@ { "name": "pubsweet-component-password-reset-frontend", - "version": "1.0.1", + "version": "1.0.2", "description": "Password reset frontend component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^2.0.0", + "@pubsweet/ui": "^3.0.0", "prop-types": "^15.5.10", "query-string": "^5.0.0", "react-router": "^4.2.0", diff --git a/packages/components/packages/PostsManager/CHANGELOG.md b/packages/components/packages/PostsManager/CHANGELOG.md index ac998c3aca942aa94c26f467eb8a7caed1887047..68d23d2cfe46a000d522dc398a8347dde5c58441 100644 --- a/packages/components/packages/PostsManager/CHANGELOG.md +++ b/packages/components/packages/PostsManager/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.0.3"></a> +## [1.0.3](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-posts-manager@1.0.2...pubsweet-component-posts-manager@1.0.3) (2018-03-05) + + +### Bug Fixes + +* **components:** correctly redirect when edit button is clicked ([faca509](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/faca509)) + + + + <a name="1.0.2"></a> ## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-posts-manager@1.0.1...pubsweet-component-posts-manager@1.0.2) (2018-02-23) diff --git a/packages/components/packages/PostsManager/package.json b/packages/components/packages/PostsManager/package.json index 70f3075072295850ded1c5e2f6b1089220dbeded..b00ab7d9afebec2490bb65db24e06c5a3c7a8862 100644 --- a/packages/components/packages/PostsManager/package.json +++ b/packages/components/packages/PostsManager/package.json @@ -1,14 +1,14 @@ { "name": "pubsweet-component-posts-manager", - "version": "1.0.2", + "version": "1.0.3", "description": "Basic Posts manager component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^2.0.0", + "@pubsweet/ui": "^3.0.0", "prop-types": "^15.5.10", - "pubsweet-component-form-group": "^1.0.0", + "pubsweet-component-form-group": "^1.1.0", "react-dom": "^16.2.0", "react-redux": "^5.0.6", "react-router-dom": "^4.2.2", diff --git a/packages/components/packages/Signup/CHANGELOG.md b/packages/components/packages/Signup/CHANGELOG.md index 15e50582c61e060b768e1c0f4ad38c54d8a26375..ee73a4012f07cd3bcde4bdd5abe72456fe51a317 100644 --- a/packages/components/packages/Signup/CHANGELOG.md +++ b/packages/components/packages/Signup/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.0.2"></a> +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-signup@1.0.1...pubsweet-component-signup@1.0.2) (2018-03-05) + + +### Bug Fixes + +* **components:** add dependency on pubsweet/ui ([f0a1926](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/f0a1926)) +* **components:** signup and login error examples ([3f991ec](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/3f991ec)) + + + + <a name="1.0.1"></a> ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-signup@1.0.0...pubsweet-component-signup@1.0.1) (2018-02-16) diff --git a/packages/components/packages/Signup/package.json b/packages/components/packages/Signup/package.json index fb5fad6045eda62e5a35d56141bdce97ddda72c0..5ab36f1b8cda20c6807a9d58df40a489ad1d34cc 100644 --- a/packages/components/packages/Signup/package.json +++ b/packages/components/packages/Signup/package.json @@ -1,17 +1,17 @@ { "name": "pubsweet-component-signup", - "version": "1.0.1", + "version": "1.0.2", "description": "Basic signup form component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { + "@pubsweet/ui": "^3.0.0", "prop-types": "^15.5.10", "react-bootstrap": "^0.32.0", "react-redux": "^5.0.6", "react-router": "^4.2.0", - "redux": "^3.7.2", - "@pubsweet/ui": "^2.0.0" + "redux": "^3.7.2" }, "peerDependencies": { "pubsweet-client": ">=1.0.0", diff --git a/packages/components/packages/TeamsManager/CHANGELOG.md b/packages/components/packages/TeamsManager/CHANGELOG.md index 2ad5643ef50747344b10690613c0c53cf594a941..c9df5b5de4a171f0cc688d9ee5cb597f750b1b2e 100644 --- a/packages/components/packages/TeamsManager/CHANGELOG.md +++ b/packages/components/packages/TeamsManager/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.0.2"></a> +## [1.0.2](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-teams-manager@1.0.1...pubsweet-component-teams-manager@1.0.2) (2018-03-05) + + + + +**Note:** Version bump only for package pubsweet-component-teams-manager + <a name="1.0.1"></a> ## [1.0.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/pubsweet-component-teams-manager@1.0.0...pubsweet-component-teams-manager@1.0.1) (2018-02-16) diff --git a/packages/components/packages/TeamsManager/package.json b/packages/components/packages/TeamsManager/package.json index a5f9522acb0211b1d0e1bc6179f256db888e2703..4376800d4a9a994f92ab5216edc64fb51d3e2655 100644 --- a/packages/components/packages/TeamsManager/package.json +++ b/packages/components/packages/TeamsManager/package.json @@ -1,12 +1,12 @@ { "name": "pubsweet-component-teams-manager", - "version": "1.0.1", + "version": "1.0.2", "description": "Basic teams manager component for PubSweet", "main": "index.js", "author": "Collaborative Knowledge Foundation", "license": "MIT", "dependencies": { - "@pubsweet/ui": "^2.0.0", + "@pubsweet/ui": "^3.0.0", "prop-types": "^15.5.10", "react-dom": "^16.2.0", "react-redux": "^5.0.6", diff --git a/packages/default-theme/CHANGELOG.md b/packages/default-theme/CHANGELOG.md index 7bdba4d920f6daaefc2cb9fadac156d83b0b0398..8a212e5d4990db8af6a30cc3d483a35ccc0d7abd 100644 --- a/packages/default-theme/CHANGELOG.md +++ b/packages/default-theme/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="0.2.0"></a> +# [0.2.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/default-theme@0.1.0...@pubsweet/default-theme@0.2.0) (2018-03-05) + + +### Features + +* **default-theme:** add variables to default theme ([ba121b0](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ba121b0)) +* **normalize:** add normalize css ([9eb24e5](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9eb24e5)) +* **ui:** add theming to Tags ([ee959d2](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ee959d2)) +* **ui:** add theming to ValidatedField ([c2a1d54](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/c2a1d54)) + + + + <a name="0.1.0"></a> # 0.1.0 (2018-02-08) diff --git a/packages/default-theme/package.json b/packages/default-theme/package.json index 57acfa4fa8bfc1c2ad93534394fa3791e3236a70..76df710e8cf0e17eabee05515494e6aa360f1a8f 100644 --- a/packages/default-theme/package.json +++ b/packages/default-theme/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/default-theme", - "version": "0.1.0", + "version": "0.2.0", "description": "Default theme for pubsweet apps", "main": "src", "license": "MIT", diff --git a/packages/elife-theme/CHANGELOG.md b/packages/elife-theme/CHANGELOG.md index 7bdba4d920f6daaefc2cb9fadac156d83b0b0398..7b17fb751cf98ff716e0806c756cec74626543f6 100644 --- a/packages/elife-theme/CHANGELOG.md +++ b/packages/elife-theme/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="0.1.0"></a> +# 0.1.0 (2018-03-05) + + +### Bug Fixes + +* **elife-theme:** switch to JS theme object ([947e29d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/947e29d)) + + +### Features + +* **elife-theme:** add elife theme ([e406e0d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e406e0d)) + + + + <a name="0.1.0"></a> # 0.1.0 (2018-02-08) diff --git a/packages/elife-theme/package.json b/packages/elife-theme/package.json index ff76a2a1fecf41bcf87df481928b37ef0c556952..4701e5af57f2af0cadb71424ae3d51eb40eaee06 100644 --- a/packages/elife-theme/package.json +++ b/packages/elife-theme/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/elife-theme", - "version": "0.0.1", + "version": "0.1.0", "description": "Theme for eLife apps", "main": "src", "license": "MIT", diff --git a/packages/styleguide/CHANGELOG.md b/packages/styleguide/CHANGELOG.md index 15115506d1a9abd29523f0b2248c60b41d22fe9d..23d20731c00e46729c2c56062652fcd227484cd2 100644 --- a/packages/styleguide/CHANGELOG.md +++ b/packages/styleguide/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="1.1.0"></a> +# [1.1.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/styleguide@1.0.0...@pubsweet/styleguide@1.1.0) (2018-03-05) + + +### Bug Fixes + +* **components:** make styleguide work (mostly) ([d036681](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d036681)) +* **components:** styleguide can render components using validations ([93df7af](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/93df7af)) +* **ui:** failing build ([c52f678](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/c52f678)) + + +### Features + +* **default-theme:** add variables to default theme ([ba121b0](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ba121b0)) +* **elife-theme:** add elife theme ([e406e0d](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/e406e0d)) +* **normalize:** add normalize css ([9eb24e5](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9eb24e5)) +* **styleguide:** add button for viewing components against grid ([6a4999f](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/6a4999f)) + + + + <a name="1.0.0"></a> # [1.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/styleguide@0.1.4...@pubsweet/styleguide@1.0.0) (2018-02-02) diff --git a/packages/styleguide/package.json b/packages/styleguide/package.json index a3db1ea211959755e8cbc42dfecf7b5c7de37571..4f24a51b798f4fb80e7da41c1c6c41f0377702a1 100644 --- a/packages/styleguide/package.json +++ b/packages/styleguide/package.json @@ -1,12 +1,15 @@ { "name": "@pubsweet/styleguide", - "version": "1.0.0", - "files": ["src", "dist"], + "version": "1.1.0", + "files": [ + "src", + "dist" + ], "main": "src", "dependencies": { - "@pubsweet/default-theme": "^0.1.0", - "@pubsweet/elife-theme": "^0.0.1", - "@pubsweet/ui": "^2.0.0", + "@pubsweet/default-theme": "^0.2.0", + "@pubsweet/elife-theme": "^0.1.0", + "@pubsweet/ui": "^3.0.0", "react": "^16.2.0", "react-dom": "^16.2.0", "react-redux": "^5.0.2", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index eec4a497fa64d6980daeed96ffdd4598065273a0..fba61d61f3ebeff8d2a7b267da1f4cfd72d2e051 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -3,6 +3,60 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="3.0.0"></a> +# [3.0.0](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui@2.1.1...@pubsweet/ui@3.0.0) (2018-03-05) + + +### Bug Fixes + +* update snapshot tests to use theming ([8ffd0e7](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/8ffd0e7)) +* **ui:** color and font display in styleguide ([d20affd](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d20affd)) +* **ui:** eslint error ([080db31](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/080db31)) +* **ui:** regularise color and spacing of ValidatedField ([4e6ce57](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/4e6ce57)) +* **ui:** tests for YesOrNo ([2ba7d6a](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/2ba7d6a)) +* **ui:** update snapshot ([827406e](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/827406e)) +* **ui:** update snapshots ([79fca90](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/79fca90)) +* **ui:** update snapshots ([616ca7e](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/616ca7e)) +* **ui:** variable names in colors.md and fonts.md ([6347b04](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/6347b04)) + + +### Code Refactoring + +* **ui:** refactor file and files components ([8e76691](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/8e76691)) +* **ui:** tidy AppBar ([09751b6](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/09751b6)) +* **ui:** wrap Icon with Colorize ([68ad6cd](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/68ad6cd)) + + +### Features + +* **default-theme:** add variables to default theme ([ba121b0](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ba121b0)) +* **normalize:** add normalize css ([9eb24e5](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/9eb24e5)) +* **ui:** add theming to Attachments ([8324704](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/8324704)) +* **ui:** add theming to Radio ([d97596f](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/d97596f)) +* **ui:** add theming to StateItem ([b5868d5](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/b5868d5)) +* **ui:** add theming to Tags ([ee959d2](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/ee959d2)) +* **ui:** add theming to UploadingFile ([c589f4f](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/c589f4f)) +* **ui:** add theming to ValidatedField ([c2a1d54](https://gitlab.coko.foundation/pubsweet/pubsweet/commit/c2a1d54)) + + +### BREAKING CHANGES + +* **ui:** * Icon takes semantic color props instead of a color name +* **ui:** * navLinks prop is now navLinkComponents and expects an array of +elements +* **ui:** * `Files` (renamed to `FileUploadList`) takes a single component that will receive `uploaded` prop +when upload is complete +* `Attachment` has default and uploaded state +* `UploadingFile` has default and uploaded state (`File` is deprecated) +* `UploadingFile`, `File`, `Files`, `Supplementary`, and `Attachments` takes `files` prop instead of `values` +* `Icon` size prop is now a multiplier for sub-grid-unit + +Other changes: +* Theming and grid-spacing applied to all touched components + + + + <a name="2.1.1"></a> ## [2.1.1](https://gitlab.coko.foundation/pubsweet/pubsweet/compare/@pubsweet/ui@2.1.0...@pubsweet/ui@2.1.1) (2018-02-23) diff --git a/packages/ui/package.json b/packages/ui/package.json index 6a93eb09a8973966d49accc2ebac85b16b5995b0..9a63b1f44a72473b18dd56a6a754e4f8e7db3a6e 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@pubsweet/ui", - "version": "2.1.1", + "version": "3.0.0", "files": [ "docs", "dist", @@ -32,7 +32,7 @@ "styled-components": "^2.4.0" }, "devDependencies": { - "@pubsweet/styleguide": "^1.0.0", + "@pubsweet/styleguide": "^1.1.0", "babel-core": "^6.26.0", "babel-loader": "^7.1.2", "babel-preset-env": "^1.6.0",