Skip to content

Commit

Permalink
v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cédric Delpoux committed Jul 18, 2018
1 parent 641d1f6 commit abe184e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 39 deletions.
52 changes: 28 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,56 +1,60 @@
# 3.5.0 - 2018-03-13

- Updated: Hide suggestions when clicking outside them by @jjavierdguezas

# 3.4.0 - 2018-03-13

* Added: customContainerRender prop
- Added: customContainerRender prop

# 3.3.1 - 2018-02-07

* Fixed: styled-components as dependency
* Removed: classnames as dependency
- Fixed: styled-components as dependency
- Removed: classnames as dependency

# 3.3.0 - 2018-01-30

* Added: Original prediction ad argument to `onSelectSuggest` by @emguide
- Added: Original prediction ad argument to `onSelectSuggest` by @emguide

# 3.2.1 - 2017-11-22

* Updated: Use React 15 to run test because React 16 is not fully compatible
with enzyme
- Updated: Use React 15 to run test because React 16 is not fully compatible
with enzyme

# 3.2.0 - 2017-11-22

* Updated: React v16.0.0 as peer dependency
* Updated: React DOM v16.0.0 as peer dependency
- Updated: React v16.0.0 as peer dependency
- Updated: React DOM v16.0.0 as peer dependency

# 3.1.0 - 2017-11-16

* Updated: `textNoResults` can be used
* Updated: `customRender` is more powerfull
- Updated: `textNoResults` can be used
- Updated: `customRender` is more powerfull

# 3.0.0 - 2017-11-08

* Removed: `webpack` build
* Added: CommonJS, UMD and ES6 build
* Added: tests
* Added: autocompletionRequest prop
* Removed: suggestRadius prop -> autocompletionRequest prop
* Removed: suggestTypes prop -> autocompletionRequest prop
* Removed: search prop -> autocompletionRequest prop
* Removed: suggestComponentRestrictions prop -> autocompletionRequest prop
* Updated: renderSuggest prop -> customRender prop
- Removed: `webpack` build
- Added: CommonJS, UMD and ES6 build
- Added: tests
- Added: autocompletionRequest prop
- Removed: suggestRadius prop -> autocompletionRequest prop
- Removed: suggestTypes prop -> autocompletionRequest prop
- Removed: search prop -> autocompletionRequest prop
- Removed: suggestComponentRestrictions prop -> autocompletionRequest prop
- Updated: renderSuggest prop -> customRender prop

# 2.1.1 - 2017-04-14

* Removed: `webpack` build
- Removed: `webpack` build

# 2.0.0 - 2016-12-11

* Add: `textNoResults` prop
* Add: `renderSuggest` prop
- Add: `textNoResults` prop
- Add: `renderSuggest` prop

# 1.0.1 - 2015-09-11

* Add: libraryTarget into Webpack config
- Add: libraryTarget into Webpack config

# 1.0.0 - 2015-09-09

* Initial release
- Initial release
20 changes: 5 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
"name": "react-google-places-suggest",
"version": "3.4.0",
"version": "3.5.0",
"author": {
"name": "Cédric Delpoux",
"email": "[email protected]"
},
"description": "React component to select geolocated suggestion from Google Maps Places API",
"files": [
"es",
"lib",
"umd"
],
"description":
"React component to select geolocated suggestion from Google Maps Places API",
"files": ["es", "lib", "umd"],
"homepage": "https://github.com/xuopled/react-google-places-suggest#readme",
"repository": {
"type": "git",
Expand All @@ -19,14 +16,7 @@
"bugs": {
"url": "https://github.com/xuopled/react-google-places-suggest/issues"
},
"keywords": [
"react",
"google",
"maps",
"places",
"googlemaps",
"geosuggest"
],
"keywords": ["react", "google", "maps", "places", "googlemaps", "geosuggest"],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down

4 comments on commit abe184e

@jjavierdguezas
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xuopled the date of release v3.5.0 in the CHANGELOG.md is not right

@cedricdelpoux
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I will change it. Thanks

@jjavierdguezas
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xuopled thank you and please update the npm package to start using the new features!

@cedricdelpoux
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Of course, I forgot! It should be ok now :)

Please sign in to comment.