From 14efb30536d7361e3bf4bf618626109bb7f3c718 Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 12:46:56 -0500 Subject: [PATCH 1/7] Added author and updated description --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 884d9f8..d33bf21 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,13 @@ { "name": "hedron", "version": "0.1.2", - "description": "A no-frills flex-box grid system for React.", + "description": "A no-frills flexbox grid system for React.", "main": "dist/hedron.js", + "author": { + "name": "Garet McKinley", + "email": "gem@jsb.ro", + "url": "https://github.com/garetmckinley" + }, "scripts": { "build": "npm run build:lib && npm run build:dist", "build:lib": "babel src --out-dir lib", From df35082741867766b70680adc2a28117e04663a2 Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 12:47:15 -0500 Subject: [PATCH 2/7] version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d33bf21..c00dcbe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hedron", - "version": "0.1.2", + "version": "0.1.3", "description": "A no-frills flexbox grid system for React.", "main": "dist/hedron.js", "author": { From 3c3dbee4eed7239ef3114323679855043567c786 Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 12:47:34 -0500 Subject: [PATCH 3/7] added travis-ci integration --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9cfb1f6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: node_js +node_js: + - "6" +script: npm run lint + From 2677ebff32981ac97a3c084018b513f046494a08 Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 13:18:13 -0500 Subject: [PATCH 4/7] Resolved linting errors --- src/components/Row.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Row.js b/src/components/Row.js index 0e1254b..a93ebb0 100644 --- a/src/components/Row.js +++ b/src/components/Row.js @@ -8,13 +8,14 @@ function RowContainer(props) { const { children, divisions, ...rest } = props; const scaledChildren = React.Children.map(children, child => React.cloneElement(child, { - divisions: divisions + divisions }) ); - return
; + return
{scaledChildren}
; } RowContainer.propTypes = { + children: React.PropTypes.element, className: React.PropTypes.string, divisions: React.PropTypes.number }; From 8bf223c2aa365d20b78500a1d0c75c623307228a Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 13:18:52 -0500 Subject: [PATCH 5/7] Fixed object-shorthand syntax for utils export --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 1c556de..e19196f 100644 --- a/src/index.js +++ b/src/index.js @@ -3,8 +3,8 @@ import Row from './components/Row'; import { divvy, media } from './utils'; const utils = { - [divvy]: divvy, - [media]: media + divvy, + media }; export { Column, Row, utils }; From 6a4dac9fc8e465fab496d1fdb42f4d9a420ecaea Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 13:23:33 -0500 Subject: [PATCH 6/7] updated homepage to point to jsb.ro/hedron --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c00dcbe..8d47733 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "bugs": { "url": "https://github.com/garetmckinley/hedron/issues" }, - "homepage": "https://garetmckinley.github.io/hedron", + "homepage": "http://jsb.ro/hedron", "repository": { "type": "git", "url": "git+https://github.com/garetmckinley/hedron.git" From 0af23c24cec24a515e54313bf38b1408b31b8da3 Mon Sep 17 00:00:00 2001 From: Garet McKinley Date: Fri, 11 Nov 2016 13:25:57 -0500 Subject: [PATCH 7/7] Updated for v0.1.3 release --- CHANGELOG.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d57c2..e48fa35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Changed +## [v0.1.3] - 2016-11-11 + +### Added + +- Integrated with `travis-ci` for easier community contributions. + +### Changed + - Fixed syntax errors in the README example. +- Cleared all linting errors. -## [v0.1.2] - 2016-11-10 +## [v0.1.2] - 2016-11-09 ### Added @@ -24,7 +33,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Made the example in the README more elaborate. -## [v0.1.1] - 2016-11-10 +## [v0.1.1] - 2016-11-09 ### Added @@ -35,7 +44,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - Made progress on code comments - Various linting -[Unreleased]: https://github.com/JSBros/hedron/compare/v0.1.2...master +[Unreleased]: https://github.com/JSBros/hedron/compare/v0.1.3...master +[v0.1.3]: https://github.com/JSBros/hedron/compare/v0.1.2...v0.1.3 [v0.1.2]: https://github.com/JSBros/hedron/compare/v0.1.1...v0.1.2 [v0.1.1]: https://github.com/JSBros/hedron/compare/v0.1.0...v0.1.1