Skip to content

Commit fa46c5c

Browse files
committed
Version 0.13.0
1 parent ec022b7 commit fa46c5c

File tree

5 files changed

+63
-7
lines changed

5 files changed

+63
-7
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# apiDoc Changelog
22

3+
4+
#### 0.13.0
5+
6+
**Important changes**:
7+
* __Remove__ deprecated annotations [http://apidocjs.com/deprecated.html].
8+
* __Replace__ markdown parser (markdown-it)[https://github.com/markdown-it/markdown-it].
9+
10+
* CLI
11+
* Add path to config file (with `-c`).
12+
* Add multiple input locations (with `-i`).
13+
* Remove markdown config parameters, for custom configurations view [MARKDOWN.md].
14+
* Disable warning if packageJson.apidoc was defined.
15+
* Add litcoffee and scala file extension.
16+
17+
* Template
18+
* Add `template.forceLanguage` in `apidoc.json` to set a fixed language file without auto-detect the browser language.
19+
* Add word wrap for pure text examples.
20+
* Add Brazilian, French, Polish and Russian translation files.
21+
22+
* Parser
23+
* Remove deprecated annotations [http://apidocjs.com/deprecated.html].
24+
* Replace markdown parser with (markdown-it)[https://github.com/markdown-it/markdown-it].
25+
* Add custom markdown parser support, view [MARKDOWN.md] for details.
26+
* Add support for markdown in the type section. Example: `@apiParam {(CustomType)[http://...link-to-description.html]}`
27+
28+
329
#### 0.12.2
430

531
* CLI

CONTRIBUTORS.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,29 @@
22

33
Thanks to all people that help to make apiDoc better!
44

5+
* [Frank Lucht](https://github.com/Digigoodz)
6+
* Add multiple input locations [#239](https://github.com/apidoc/apidoc/pull/239)
7+
8+
* [赵健](https://github.com/karboom)
9+
* Add word wrap for text examples [#241](https://github.com/apidoc/apidoc/pull/241)
10+
11+
* [Tyler Clemens](https://github.com/tielur)
12+
* Add a check to see if packageJson.apidoc was defined [#227](https://github.com/apidoc/apidoc/pull/227)
13+
14+
* [Dmitry Krasyukov](https://github.com/p00h), [Alexej Yaroshevich](https://github.com/zxqfox), [Dmitry Kirilyuk](https://github.com/Jokero)
15+
* Add Russian translation [#237](https://github.com/apidoc/apidoc/pull/237)
16+
17+
* [Bruno Wego](https://github.com/brunowego)
18+
* Add Brazilian translation [#249](https://github.com/apidoc/apidoc/pull/249)
19+
20+
* [Rafał Zielonka](https://github.com/Bombaharris)
21+
* Add Polish translation [#199](https://github.com/apidoc/apidoc/pull/199)
22+
23+
* [Vincent Hérilier](https://github.com/vherilier)
24+
* Add French translation [#191](https://github.com/apidoc/apidoc/pull/191)
25+
526
* [Hector Hernandez](https://github.com/alfadormx)
6-
* Added support for markdown in the type section [#1](https://github.com/apidoc/apidoc-core/pull/15)
27+
* Added support for markdown in the type section [#1](https://github.com/apidoc/apidoc-core/pull/1)
728

829
* [Goonoo Kim](https://github.com/mctenshi)
930
* Added litcoffee file extension [#5](https://github.com/apidoc/apidoc-core/pull/5)
@@ -15,13 +36,13 @@ Thanks to all people that help to make apiDoc better!
1536
* Unindent strings [#173](https://github.com/apidoc/apidoc/pull/173)
1637

1738
* [大鼻子](https://github.com/wohugb)
18-
* Add chinese translation (missing translations from google).
39+
* Add chinese translation (missing translations from google)
1940

2041
* [kimhoo](https://github.com/kimhoo)
21-
* Add dutch translation (missing translations from google).
42+
* Add dutch translation (missing translations from google)
2243

2344
* [Danny Olson](https://github.com/dbolson)
24-
* Add Clojure parser.
45+
* Add Clojure parser
2546

2647
* [Eugene Jo](https://github.com/iameugenejo)
2748
* Allowed options.packageInfo to overwrite default packageInfo [#177](https://github.com/apidoc/apidoc/pull/171))

MARKDOWN.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
By default apiDoc uses [markdown-it](https://github.com/markdown-it/markdown-it) Markdown Parser.
44

5+
If you need to modify the parser options or use an other markdown parser, create a .js file with a custom parser.
6+
7+
Visit the markdown-it page for details, in particular if you want to use markdown plugins.
58

69

710
## Custom Parser

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ More examples and best practice hints: [EXAMPLES.md](https://github.com/apidoc/a
5050

5151
## Supported programming languages
5252

53-
* **C#, Go, Dart, Java, JavaScript, PHP** (all DocStyle capable languages):
53+
* **C#, Go, Dart, Java, JavaScript, PHP, Scala** (all DocStyle capable languages):
5454

5555
```javascript
5656
/**
@@ -129,6 +129,12 @@ More examples and best practice hints: [EXAMPLES.md](https://github.com/apidoc/a
129129
* [Sublime Text plugin](https://github.com/DWand/ST3_apiDocAutocompletion)
130130

131131

132+
## Converter
133+
134+
* [apidoc-swagger](https://github.com/fsbahman/apidoc-swagger)
135+
* [gulp-apidoc-swagger](https://github.com/fsbahman/gulp-apidoc-swagger)
136+
137+
132138
## Help
133139

134140
Please add [issues](https://github.com/apidoc/apidoc/issues) if you have a question or found a problem.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apidoc",
3-
"version": "0.12.3",
3+
"version": "0.13.0",
44
"description": "RESTful web API Documentation Generator",
55
"author": "Peter Rottmann <[email protected]>",
66
"license": {
@@ -36,7 +36,7 @@
3636
"node": ">= 0.10.0"
3737
},
3838
"dependencies": {
39-
"apidoc-core": "~0.3.2",
39+
"apidoc-core": "~0.4.0",
4040
"fs-extra": "~0.18.2",
4141
"lodash": "~3.8.0",
4242
"markdown-it": "^4.2.1",

0 commit comments

Comments
 (0)