Skip to content

Commit

Permalink
chore: changelog adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed Jul 6, 2017
1 parent c00e2f0 commit 3a7bc94
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 28 deletions.
35 changes: 12 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,54 +1,43 @@
# Changelog
## 1.0.0 (2017-07-06)

## [Unreleased]

## [1.0.0] - 2017-07-06

### Added
##### Added

- POST requests (`kitsu.<post|create>`)
- PATCH requests (`kitsu.<patch|update>`)
- DELETE requests (`kitsu.<remove|destroy>`)
- Aliases for GET requests (`kitsu.<fetch|find>`)

## [0.2.0] - 2017-07-05
## 0.2.0 (2017-07-05)

### Added
##### Added

- Exposed headers (`kitsu.headers`)

### Changed
##### Changed

- Updated package description
- Documented the api

## [0.1.2] - 2017-06-30
## 0.1.2 (2017-06-30)

### Added
##### Added

- ES6 module version for webpack 2/3

## [0.1.1] - 2017-06-29
## 0.1.1 (2017-06-29)

### Fixed
##### Fixed

- Added `babel-runtime` to dependencies

### Removed
##### Removed

- Removed build files from published package

## [0.1.0] - 2017-06-29
## 0.1.0 (2017-06-29)

### Added
##### Added

- GET requests for all models
- JSON API query parameters
- Authentication

[Unreleased]:https://github.com/wopian/kitsu/compare/28bbaaab4db4914f5fe18cd3a1c8ce2db9f3bb29...HEAD
[1.0.0]:https://github.com/wopian/kitsu/compare/0.2.0...1.0.0
[0.2.0]:https://github.com/wopian/kitsu/compare/0.1.2...0.2.0
[0.1.2]:https://github.com/wopian/kitsu/compare/0.1.1...0.1.2
[0.1.1]:https://github.com/wopian/kitsu/compare/0.1.0...0.1.1
[0.1.0]:https://github.com/wopian/kitsu/compare/28bbaaab4db4914f5fe18cd3a1c8ce2db9f3bb29...0.1.0
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@
},
"scripts": {
"test": "jest --coverage",
"docs": "documentation build src/index.js -f md -o DOCS.md",
"build": "yarn run rollup && yarn run uglify",
"prepublishOnly": "jest && yarn run build && yarn run docs",
"docs": "documentation build src/index.js -f md -o DOCS.md --sort-order source",
"build": "yarn run docs && yarn run rollup && yarn run uglify",
"release:build": "jest && yarn run build",
"release:push": "git push origin && git push origin --tags",
"release:commit": "git add package.json && git add DOCS.md && git add CHANGELOG.md && git commit -m 'build: bumped version'",
"release:major": "yarn run release:build && changelog -M && yarn run release:commit && npm version major && yarn run release:push",
"release:minor": "yarn run release:build && changelog -m && yarn run release:commit && npm version minor && yarn run release:push",
"release:patch": "yarn run release:build && changelog -p && yarn run release:commit && npm version patch && yarn run release:push",
"rollup": "cross-env NODE_ENV=production rollup -c --environment BUILD:production",
"uglify": "uglifyjs lib/kitsu.js -c -m -o lib/kitsu.js && uglifyjs lib/kitsu.mjs -c -m -o lib/kitsu.mjs",
"start": "yarn run example:basic",
Expand Down Expand Up @@ -65,9 +70,10 @@
"cross-env": "~5.0.1",
"documentation": "~4.0.0-rc.1",
"eslint": "~4.1.1",
"generate-changelog": "~1.3.0",
"jest": "~20.0.4",
"js-beautify": "~1.6.14",
"rollup": "^0.43.0",
"rollup": "~0.43.0",
"rollup-plugin-babel": "~2.7.1",
"rollup-plugin-babili": "~3.1.0",
"rollup-plugin-json": "~2.3.0",
Expand Down
14 changes: 13 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ block-stream@*:
dependencies:
inherits "~2.0.0"

bluebird@^3.0.5:
bluebird@^3.0.5, bluebird@^3.0.6:
version "3.5.0"
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c"

Expand Down Expand Up @@ -2358,6 +2358,14 @@ gauge@~2.7.3:
strip-ansi "^3.0.1"
wide-align "^1.1.0"

generate-changelog@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/generate-changelog/-/generate-changelog-1.3.0.tgz#90510b8c27ecff9ffc33243d412e6bc37bca034b"
dependencies:
bluebird "^3.0.6"
commander "^2.9.0"
github-url-from-git "^1.4.0"

generate-function@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
Expand Down Expand Up @@ -2409,6 +2417,10 @@ github-slugger@1.1.1, github-slugger@^1.0.0, github-slugger@^1.1.1:
dependencies:
emoji-regex "^6.0.0"

github-url-from-git@^1.4.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/github-url-from-git/-/github-url-from-git-1.5.0.tgz#f985fedcc0a9aa579dc88d7aff068d55cc6251a0"

glob-base@^0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
Expand Down

0 comments on commit 3a7bc94

Please sign in to comment.