Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccajfriedman committed Nov 7, 2018
1 parent fff0acb commit 630d781
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 10 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
@@ -1,8 +1,19 @@
# Changelog

### v1.9.1 (October 24, 2018)
- Specifies pageInfo for discountApplications connection

### [UNSAFE] v1.9.0 (October 23, 2018)
- Updates schema.json
- Support checkoutDiscountCodeRemove mutation
- Exposes discounts on the checkout Object
- Allows a null checkout response from CheckoutResource.fetch (#563)

### v1.8.0 (August 30, 2018)
- Support checkoutEmailUpdate mutation

### v0.1.3 (March 30, 2016)
- Adds IE9 support for `atob` and `btoa` using polyfills via #52
- Cleans up some deployment noise (#54). Thanks @tessalt
- Adds IE9 support for `atob` and `btoa` using polyfills via #52
- Cleans up some deployment noise (#54). Thanks @tessalt

### v0.1.0 (March 22, 2016)

9 changes: 5 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -64,10 +64,11 @@ The following documents the folder structure for this project and what the purpo
See [here](https://github.com/Shopify/js-buy-sdk/blob/master/examples) for our examples.

## Documentation
If your change affects how people use the project (i.e. adding or
changing arguments to a function, adding a new function, changing the
return value, etc), please ensure the documentation is also updated to
reflect this. The docs live inside the `docs/` folder and are hosted
Please do not update documentation, as this may cause
merge conflicts. After a pull request has been merged, the
maintainers will update documentation and release a new version.

The docs live inside the `docs/` folder and are hosted
at `http://shopify.github.io/js-buy-sdk`.

To generate docs run the following:
Expand Down
20 changes: 17 additions & 3 deletions DEPLOYING.md
Expand Up @@ -5,6 +5,20 @@
* write new version to package.json
* create a commit with a commit message matching the version number
* create a new tag matching the version number
3. Push the new commit and tags to master with `git push origin master --tags`
4. Create a release on Github. Include changelog in description
5. Deploy built scripts to s3 via [shipit](https://shipit.shopify.io/shopify/js-buy-sdk/production)
3. Push the new commit and tags to master with `git push && git push —tags`
4. Deploy built scripts to s3 via [shipit](https://shipit.shopify.io/shopify/js-buy-sdk/production)

# Updating Documentation

If your change affects how people use the project (i.e. adding or
changing arguments to a function, adding a new function, changing the
return value, etc), please ensure the documentation is also updated to
reflect this. The docs live inside the `docs/` folder and are hosted
at `http://shopify.github.io/js-buy-sdk`.

Please update the docs in a separate PR from the code change. When the two are
updated together, the diff will be huge and it will be difficult to review.

1. Generate documentation using `npm run doc:build` or `yarn doc:build`
2. Update the [Changelog](https://github.com/Shopify/js-buy-sdk/CHANGELOG.md) with details about the release.
3. Merge your branch into master
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -10,6 +10,10 @@ and provides the ability to retrieve products and collections from your shop, ad

[Full API docs are available here](https://shopify.github.io/js-buy-sdk).

## Changelog

View our [Changelog](https://github.com/Shopify/js-buy-sdk/CHANGELOG.md) for details about our releases.

## Table Of Contents

- [Installation](#installation)
Expand Down

0 comments on commit 630d781

Please sign in to comment.