8 Commits

Author SHA1 Message Date
Tunghsiao Liu
0b19a3274b chore: release v0.0.6 2015-08-12 18:53:15 +08:00
Tunghsiao Liu
48f7cb8601 feat(package): update contributors 2015-08-12 18:53:15 +08:00
Tunghsiao Liu
666279696d feat(grunt): better version handling 2015-08-12 18:51:09 +08:00
Tunghsiao Liu
bea8e172b1 feat(package): update contributors 2015-08-12 18:51:09 +08:00
Tunghsiao Liu
1fb7e8d08b wip(grunt): try grunt-bump 2015-08-12 18:51:09 +08:00
Tunghsiao Liu
1bd7b8f874 Merge pull request #20 from district10/master
chore: added an empty line before quotation
2015-08-10 09:54:44 +08:00
tzx
c808cb13c7 add an empty line before quotation 2015-08-10 09:33:19 +08:00
Tunghsiao Liu
dfd2b9d268 chore: fix changelog 2015-07-08 18:29:40 +08:00
4 changed files with 53 additions and 19 deletions

View File

@@ -1,3 +1,15 @@
<a name="0.0.6"></a>
## [0.0.6](https://github.com/sparanoid/chinese-copywriting-guidelines/compare/v0.0.5...v0.0.6) (2015-08-12)
### Features
* **grunt:** better version handling ([6662796](https://github.com/sparanoid/chinese-copywriting-guidelines/commit/6662796))
* **package:** update contributors ([48f7cb8](https://github.com/sparanoid/chinese-copywriting-guidelines/commit/48f7cb8))
* **package:** update contributors ([bea8e17](https://github.com/sparanoid/chinese-copywriting-guidelines/commit/bea8e17))
<a name="0.0.5"></a>
### 0.0.5 (2015-07-08)
@@ -5,7 +17,7 @@
#### Bug Fixes
* **docs:**
* typo HTML5, fixes https://github.com/sparanoid/chinese-copywriting-guidelines/is ([9a009b3d](http://github.com/sparanoid/chinese-copywriting-guidelines/commit/9a009b3d5d99e21692153c3086fff10b21407dc7))
* typo HTML5, fixes #19 ([9a009b3d](http://github.com/sparanoid/chinese-copywriting-guidelines/commit/9a009b3d5d99e21692153c3086fff10b21407dc7))
* wrong heading ([c2ec2d82](http://github.com/sparanoid/chinese-copywriting-guidelines/commit/c2ec2d82cbab504ee3185b546457c2e148361884))
* **package:** license not defined ([ac6b463c](http://github.com/sparanoid/chinese-copywriting-guidelines/commit/ac6b463c6903d8e8cfad7cb23b6bd772de8bc6d6))

View File

@@ -9,23 +9,34 @@ module.exports = (grunt) ->
config:
pkg: grunt.file.readJSON("package.json")
release:
"npm-contributors":
options:
changelog: false,
file: "package.json"
npm: false
commitMessage: "chore: release <%= version %>"
tagName: "v<%= version %>"
tagMessage: "chore: tagging version <%= version %>"
afterBump: [
"changelog"
]
# Dev options
commit: false
tag: false
commitMessage: "feat(package): update contributors"
conventionalChangelog:
options:
changelogOpts:
preset: "angular"
dist:
src: "CHANGELOG.md"
bump:
options:
files: ["package.json"]
commitMessage: 'chore: release v%VERSION%'
commitFiles: ["-a"]
tagMessage: 'chore: create tag %VERSION%'
push: false
pushTags: false
grunt.registerTask "default", "Default task aka. build task", [
"changelog"
]
grunt.registerTask "default", "Default task aka. build task", (type) ->
grunt.task.run [
"npm-contributors"
"bump-only:#{type or 'patch'}"
"conventionalChangelog"
"bump-commit"
]

View File

@@ -50,6 +50,7 @@
> 在 LeanCloud上數據存儲是圍繞`AVObject` 進行的。
完整的正確用法:
> 在 LeanCloud 上,数据存储是围绕 `AVObject` 进行的。每个 `AVObject` 都包含了与 JSON 兼容的 key-value 对应的数据。数据是 schema-free 的,你不需要在每个 `AVObject` 上提前指定存在哪些键,只要直接设定对应的 key-value 即可。
:exclamation: 例外「豆瓣FM」等產品名詞按照官方所定義的格式書寫。

View File

@@ -1,6 +1,6 @@
{
"name": "chinese-copywriting-guidelines",
"version": "0.0.5",
"version": "0.0.6",
"description": "Chinese Copywriting Guidelines",
"author": "Tunghsiao Liu",
"homepage": "http://github.com/sparanoid/chinese-copywriting-guidelines",
@@ -24,8 +24,18 @@
"readmeFilename": "README.md",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-conventional-changelog": "^1.2.1",
"grunt-release": "^0.13.0",
"grunt-bump": "^0.3.1",
"grunt-conventional-changelog": "^4.0.0",
"grunt-npm": "0.0.2",
"matchdep": "^0.3.0"
}
},
"contributors": [
"Jason Lee <huacnlee@gmail.com>",
"Huei Tan <huei90@users.noreply.github.com>",
"Yang Li <idealhack@gmail.com>",
"tzx <district10@users.noreply.github.com>",
"Charlie Jade <summer.alex07@gmail.com>",
"hotoo@users.noreply.github.com>",
"Elethom Hunter <elethomhunter@gmail.com>"
]
}