Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed May 7, 2020
1 parent 08362a8 commit e53c49e
Show file tree
Hide file tree
Showing 6 changed files with 121 additions and 4 deletions.
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,51 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [9.0.0](https://github.com/wopian/kitsu/compare/v8.3.1...v9.0.0) (2020-05-07)


### Build System / Dependencies

* update jest monorepo to ~26.0.0 (major) ([#407](https://github.com/wopian/kitsu/issues/407)) ([a73ae66](https://github.com/wopian/kitsu/commit/a73ae66))
* **kitsu:** update devdependency [@size-limit](https://github.com/size-limit)/preset-small-lib to ~4.5.0 ([#405](https://github.com/wopian/kitsu/issues/405)) ([7e0072d](https://github.com/wopian/kitsu/commit/7e0072d))
* update devdependency size-limit to ~4.5.0 ([#406](https://github.com/wopian/kitsu/issues/406)) ([fb7a139](https://github.com/wopian/kitsu/commit/fb7a139))


### Chores

* **release:** update documentation ([08362a8](https://github.com/wopian/kitsu/commit/08362a8))


### Documentation Changes

* **kitsu:** add 9.0.0 migration guide ([8f899c5](https://github.com/wopian/kitsu/commit/8f899c5))
* **kitsu-core:** add 9.0.0 migration guide ([8576749](https://github.com/wopian/kitsu/commit/8576749))
* update README ([6a73433](https://github.com/wopian/kitsu/commit/6a73433))
* **kitsu-core:** use lowercase string for param type ([8254710](https://github.com/wopian/kitsu/commit/8254710))


### New Features

* **kitsu:** handle nested (relationship) routes using kitsu-core's splitModel ([4f641b9](https://github.com/wopian/kitsu/commit/4f641b9))
* **kitsu-core:** add splitModel ([782d1b6](https://github.com/wopian/kitsu/commit/782d1b6))
* **kitsu-core:** preserve links in relationships during deserialisation ([cbf50df](https://github.com/wopian/kitsu/commit/cbf50df))


### Refactors

* **kitsu:** (internal) pass camel and plural options as arguments to serialise ([046b51a](https://github.com/wopian/kitsu/commit/046b51a))
* **kitsu-core:** pass camelCase and pluralisation options as arguments to serialise ([34b9cae](https://github.com/wopian/kitsu/commit/34b9cae))


### BREAKING CHANGES

* **kitsu-core:** for deserialise and linkRelationships
* **kitsu-core:** serialise.apply[{ camel, resCase, plural}, [ model, data, method ]) is no longer neccessary. New syntax is serialise(model, data, method, { camelCaseTypes: camel, pluralTypes: plural}).





## [8.3.1](https://github.com/wopian/kitsu/compare/v8.3.0...v8.3.1) (2020-05-02)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.3.1",
"version": "9.0.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
40 changes: 40 additions & 0 deletions packages/kitsu-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,46 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [9.0.0](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/compare/v8.3.1...v9.0.0) (2020-05-07)


### Build System / Dependencies

* **kitsu:** update devdependency [@size-limit](https://github.com/size-limit)/preset-small-lib to ~4.5.0 ([#405](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/issues/405)) ([7e0072d](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/7e0072d))


### Chores

* **release:** update documentation ([08362a8](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/08362a8))


### Documentation Changes

* **kitsu-core:** add 9.0.0 migration guide ([8576749](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/8576749))
* update README ([6a73433](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/6a73433))
* **kitsu-core:** use lowercase string for param type ([8254710](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/8254710))


### New Features

* **kitsu-core:** add splitModel ([782d1b6](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/782d1b6))
* **kitsu-core:** preserve links in relationships during deserialisation ([cbf50df](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/cbf50df))


### Refactors

* **kitsu-core:** pass camelCase and pluralisation options as arguments to serialise ([34b9cae](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/commit/34b9cae))


### BREAKING CHANGES

* **kitsu-core:** for deserialise and linkRelationships
* **kitsu-core:** serialise.apply[{ camel, resCase, plural}, [ model, data, method ]) is no longer neccessary. New syntax is serialise(model, data, method, { camelCaseTypes: camel, pluralTypes: plural}).





## [8.3.1](https://github.com/wopian/kitsu/tree/master/packages/kitsu-core/compare/v8.3.0...v8.3.1) (2020-05-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/kitsu-core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.3.1",
"version": "9.0.0",
"name": "kitsu-core",
"description": "Core serialisation and deserialsation functions for the kitsu JSON:API client",
"author": "James Harris <[email protected]>",
Expand Down
32 changes: 32 additions & 0 deletions packages/kitsu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [9.0.0](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v8.3.1...v9.0.0) (2020-05-07)


### Build System / Dependencies

* **kitsu:** update devdependency [@size-limit](https://github.com/size-limit)/preset-small-lib to ~4.5.0 ([#405](https://github.com/wopian/kitsu/tree/master/packages/kitsu/issues/405)) ([7e0072d](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/7e0072d))


### Chores

* **release:** update documentation ([08362a8](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/08362a8))


### Documentation Changes

* **kitsu:** add 9.0.0 migration guide ([8f899c5](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/8f899c5))
* update README ([6a73433](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/6a73433))


### New Features

* **kitsu:** handle nested (relationship) routes using kitsu-core's splitModel ([4f641b9](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/4f641b9))


### Refactors

* **kitsu:** (internal) pass camel and plural options as arguments to serialise ([046b51a](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/046b51a))





## [8.3.1](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v8.3.0...v8.3.1) (2020-05-02)


Expand Down
4 changes: 2 additions & 2 deletions packages/kitsu/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "8.3.1",
"version": "9.0.0",
"name": "kitsu",
"description": "Simple & lightweight JSON-API client for Kitsu and other compliant APIs",
"author": "James Harris <[email protected]>",
Expand Down Expand Up @@ -47,7 +47,7 @@
"sideEffects": false,
"dependencies": {
"axios": "^0.19.0",
"kitsu-core": "^8.3.1",
"kitsu-core": "^9.0.0",
"pluralize": "^8.0.0"
},
"size-limit": [
Expand Down

0 comments on commit e53c49e

Please sign in to comment.