Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Commit 975ee16

Browse files
Updated change log and bumped version to v2.0.0 as a peer dependency of react v16.0.0 is now required
1 parent 70cfae6 commit 975ee16

File tree

2 files changed

+63
-52
lines changed

2 files changed

+63
-52
lines changed

CHANGELOG.md

Lines changed: 62 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,143 @@
1-
# Release Notes
1+
# Changelog
2+
3+
## (2019-01-02) `v2.0.0`
4+
5+
### Added
6+
7+
- `DatFolder` now accepts a `closed` boolean prop to determine if the folder should be closed or open by default
8+
9+
### Changed
10+
11+
- React v16.0.0 is now required as a peer dependency
12+
- README updated with more docs, included a note about the React v16 peer dependency
213

314
## (2017-12-09) `v1.0.3`
415

516
### Added
617

7-
* Section on React version to README
8-
* Point regarding animations for `DatFolder` to Roadmap
9-
* License section to README
18+
- Section on React version to README
19+
- Point regarding animations for `DatFolder` to Roadmap
20+
- License section to README
1021

1122
## (2017-10-09) `v1.0.2`
1223

1324
### Changed
1425

15-
* Minor code formatting updates
16-
* Installation guidelines
26+
- Minor code formatting updates
27+
- Installation guidelines
1728

1829
## (2017-10-09) `v1.0.1`
1930

2031
### Changed
2132

22-
* ES7 property initializers are now used to set initial state in all components rather than `componentWillMount`
33+
- ES7 property initializers are now used to set initial state in all components rather than `componentWillMount`
2334

2435
## (2017-10-09) `v1.0.0`
2536

2637
### Added
2738

28-
* A lot of documentation to the README
29-
* Deploy script to `./example` app which deploys to github pages
39+
- A lot of documentation to the README
40+
- Deploy script to `./example` app which deploys to github pages
3041

3142
### Changed
3243

33-
* Changed default export from `Dat` to `DatGui`
44+
- Changed default export from `Dat` to `DatGui`
3445

3546
## (2017-10-08) `v0.0.21`
3647

3748
### Changed
3849

39-
* Removed custom check box styling from `DatBoolean` component
40-
* Ensured sliders are the same height as number inputs
41-
* Minor style changes for consistency
50+
- Removed custom check box styling from `DatBoolean` component
51+
- Ensured sliders are the same height as number inputs
52+
- Minor style changes for consistency
4253

4354
## (2017-10-08) `v0.0.20`
4455

45-
### Changed
56+
### Changed
4657

47-
* Housekeeping in preparation for `v1.0.0`
58+
- Housekeeping in preparation for `v1.0.0`
4859

4960
## (2017-10-06) `v0.0.19`
5061

5162
### Added
5263

53-
* `DatPresets` component - this allows you to set presets for your DatGUI component and switch between them easily
64+
- `DatPresets` component - this allows you to set presets for your DatGUI component and switch between them easily
5465

5566
### Changed
5667

57-
* Removed final reference to `reactcss`, this can be completely removed from dependencies now
58-
* Removed unnecessary arrow functions in some `setState` callbacks
59-
* Fixed bug where `DatNumber` input updates weren't updating sliders
68+
- Removed final reference to `reactcss`, this can be completely removed from dependencies now
69+
- Removed unnecessary arrow functions in some `setState` callbacks
70+
- Fixed bug where `DatNumber` input updates weren't updating sliders
6071

6172
## (2017-10-05) `v0.0.18`
6273

63-
### Added
74+
### Added
6475

65-
* `DatColor` component - this allows color pickers, powered by `react-color` to be rendered for mutating colors
66-
* Added `example:promote` script for pushing development code up from `example/src/dev` into `src`
76+
- `DatColor` component - this allows color pickers, powered by `react-color` to be rendered for mutating colors
77+
- Added `example:promote` script for pushing development code up from `example/src/dev` into `src`
6778

6879
### Changed
6980

70-
* Example updated with `DatColor` included
81+
- Example updated with `DatColor` included
7182

7283
## (2017-10-04) `v0.0.17`
7384

7485
### Added
7586

76-
* `DatSelect` component
87+
- `DatSelect` component
7788

7889
### Changed
7990

80-
* Example updated with `DatSelect` included
91+
- Example updated with `DatSelect` included
8192

8293
## (2017-10-03) `v0.0.16`
8394

8495
### Added
8596

86-
* Support for nested folders via `DatFolder`
97+
- Support for nested folders via `DatFolder`
8798

88-
### Changed
99+
### Changed
89100

90-
* Example `App.js` has been updated to include a nested folder example
101+
- Example `App.js` has been updated to include a nested folder example
91102

92103
## (2017-10-02) `v0.0.15`
93104

94105
### Changed
95106

96-
* SCSS is now broken up into partials which align with the various components
107+
- SCSS is now broken up into partials which align with the various components
97108

98109
### Added
99110

100-
* Added `DatFolder` component
101-
* Added this to the example
111+
- Added `DatFolder` component
112+
- Added this to the example
102113

103114
## (2017-10-02) `v0.0.14`
104115

105116
### Changed
106117

107-
* Updated component files to use `.js` file extension rather than `.jsx`
108-
* Removed `examples` directory and created single `example` directory which is now powered by `create-react-app`
109-
* Rewrote `webpack.config.js` so that it is compatible with Webpack v2
110-
* Updated a bunch of dependencies in `package.json`
111-
* Separated out `Slider` component from `DatNumber` and also added `utils` file
112-
* Switched all event handlers in components to ES7 syntax
113-
* Some code formatting
114-
* Changed `build` directory to `dist`
118+
- Updated component files to use `.js` file extension rather than `.jsx`
119+
- Removed `examples` directory and created single `example` directory which is now powered by `create-react-app`
120+
- Rewrote `webpack.config.js` so that it is compatible with Webpack v2
121+
- Updated a bunch of dependencies in `package.json`
122+
- Separated out `Slider` component from `DatNumber` and also added `utils` file
123+
- Switched all event handlers in components to ES7 syntax
124+
- Some code formatting
125+
- Changed `build` directory to `dist`
115126

116127
### Added
117128

118-
* `example` directory
119-
* `src/components/Slider.js`
120-
* `src/components/utils.js`
121-
* `src/style` directory
122-
* `.editorconfig` file
123-
* `.eslintrc.json` file
124-
* `.babelrc` file
125-
* `scripts` directory
126-
* A number of `npm` scripts to `package.json`
127-
* This change log!
129+
- `example` directory
130+
- `src/components/Slider.js`
131+
- `src/components/utils.js`
132+
- `src/style` directory
133+
- `.editorconfig` file
134+
- `.eslintrc.json` file
135+
- `.babelrc` file
136+
- `scripts` directory
137+
- A number of `npm` scripts to `package.json`
138+
- This change log!
128139

129140
### Removed
130141

131-
* The build no longer creates minified files, can add these back if required but I think it's better for the user to perform this step in their own build pipeline
132-
* ES5 examples, don't think many people are coding with React and ES5 nowadays
142+
- The build no longer creates minified files, can add these back if required but I think it's better for the user to perform this step in their own build pipeline
143+
- ES5 examples, don't think many people are coding with React and ES5 nowadays

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-dat-gui",
3-
"version": "1.0.3",
3+
"version": "2.0.0",
44
"description": "dat.GUI reimagined for React",
55
"main": "build/react-dat-gui.js",
66
"style": "build/react-dat-gui.css",

0 commit comments

Comments
 (0)