diff --git a/CHANGELOG.md b/CHANGELOG.md index b4ce5d941..e0395eacb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Update the `vtex.product-summary` version. ## [1.1.1] - 2018-09-06 ### Added diff --git a/manifest.json b/manifest.json index d7a30553a..2788e7ecf 100644 --- a/manifest.json +++ b/manifest.json @@ -26,7 +26,7 @@ ], "dependencies": { "vtex.styleguide": "6.x", - "vtex.product-summary": "0.x", + "vtex.product-summary": "1.x", "vtex.store-graphql": "2.x" } } diff --git a/react/components/GalleryItem.js b/react/components/GalleryItem.js index 7d4083892..5e1aaf3c1 100644 --- a/react/components/GalleryItem.js +++ b/react/components/GalleryItem.js @@ -1,6 +1,6 @@ import React, { Component } from 'react' -import { ProductSummary } from 'vtex.product-summary' +import ProductSummary from 'vtex.product-summary/index' import { productShape } from '../constants/propTypes' import { PropTypes } from 'prop-types' diff --git a/react/index.js b/react/index.js index 5dcb365c1..197a15661 100644 --- a/react/index.js +++ b/react/index.js @@ -1,7 +1,7 @@ import './global.css' import React, { Component } from 'react' -import { ProductSummary } from 'vtex.product-summary' +import ProductSummary from 'vtex.product-summary/index' import SearchResultInfiniteScroll from './components/SearchResultInfiniteScroll' import { SORT_OPTIONS } from './components/OrderBy'