Skip to content

Commit 96ee66c

Browse files
committed
Bumped 1.10.0
1 parent 11352a8 commit 96ee66c

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.10.0
4+
5+
* Made annotations `@throws`, `@requires` and `@content` fill themselves so you don't have to, unless told otherwise through the [`autofill` option](http://sassdoc.com/configuration/#autofill) ([#232](https://github.com/SassDoc/sassdoc/issues/232), [#238](https://github.com/SassDoc/sassdoc/issues/238))
6+
* Added the ability to define `--sass-convert`, `--no-update-identifier` and `--no-prompt` options within the configuration file instead of CLI only ([#247](https://github.com/SassDoc/sassdoc/issues/247))
7+
* Merged [sassdoc-filter](https://github.com/sassdoc/sassdoc-filter) and [sassdoc-indexer](https://github.com/sassdoc/sassdoc-indexer) into [sassdoc-extras](https://github.com/sassdoc/sassdoc-extras); theme authors are asked to use the new repository
8+
39
## 1.9.0
410

511
* Added ability to use inline comments with `///` ([#143](https://github.com/SassDoc/sassdoc/issues/143))

CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ So you think you've found a bug? Likely. We're all humans after all! Before even
2626

2727
* [Core](https://github.com/sassdoc/sassdoc): API (you're here)
2828
* [Theme](https://github.com/sassdoc/sassdoc-theme-light): Theme, templates and styles
29-
* [Filter](https://github.com/sassdoc/sassdoc-filter): Markdown, display, groups...
30-
* [Indexer](https://github.com/sassdoc/sassdoc-indexer): Data structure
29+
* [Extras](https://github.com/sassdoc/sassdoc-extras): Extra tools for theme authors
3130
* [Grunt plugin](https://github.com/sassdoc/grunt-sassdoc): Grunt integration
3231
* [Gulp plugin](https://github.com/sassdoc/gulp-sassdoc): Gulp integration
3332
* [Broccoli plugin](https://github.com/sassdoc/broccoli-sassdoc): Broccoli integration

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,24 @@ develop: [![Build Status](https://travis-ci.org/SassDoc/sassdoc.svg?branch=devel
1919

2020
## How does it work?
2121

22-
[SassDoc](http://github.com/sassdoc/sassdoc) parses your source folder to grab documentation-specific comments. From there, it builds a data tree, that gets [enhanced](http://github.com/sassdoc/sassdoc-indexer) and [filtered](http://github.com/sassdoc/sassdoc-filter) before being passed to the [view](http://github.com/sassdoc/sassdoc-theme-light). So you end up with a fully styled HTML document located at your destination folder.
22+
[SassDoc](http://github.com/sassdoc/sassdoc) parses your source folder to grab [documentation-specific comments](/annotations/). From there, it builds a [data tree](/data-interface/), that gets [enhanced and filtered](/extra-tools/) before being passed to the [view](/customising-the-view/). So you end up with a fully styled HTML document located at your destination folder.
2323

2424
## Getting started
2525

2626
* [Getting Started](http://sassdoc.com/getting-started/)
27-
* [Documenting Your Items](http://sassdoc.com/documenting-your-items/)
27+
* [Configuration](http://sassdoc.com/configuration/)
28+
* [Annotations](http://sassdoc.com/annotations/)
2829
* [File-level Annotations](http://sassdoc.com/file-level-annotations/)
2930
* [Customising The View](http://sassdoc.com/customising-the-view/)
3031

3132
## Using a custom theme
3233

3334
* [Using Your Own Theme](http://sassdoc.com/using-your-own-theme/)
34-
* [Theme Context](http://sassdoc.com/theme-context/)
35-
* [Extending SassDoc](http://sassdoc.com/extending-sassdoc/)
3635
* [Data Interface](http://sassdoc.com/data-interface/)
36+
* [Extending SassDoc](http://sassdoc.com/extending-sassdoc/)
37+
* [Extra Tools](http://sassdoc.com/extra-tools/)
3738
* [Theme Generator](http://sassdoc.com/theme-generator/)
39+
* [Theme Gallery](http://sassdoc.com/theme-gallery/)
3840

3941
## Alternative usages
4042

@@ -45,6 +47,7 @@ develop: [![Build Status](https://travis-ci.org/SassDoc/sassdoc.svg?branch=devel
4547

4648
## Extra
4749

50+
* [Changelog](http://sassdoc.com/changelog/)
4851
* [About](http://sassdoc.com/about/)
4952
* [Frequently Asked Questions](http://sassdoc.com/frequently-asked-questions/)
5053
* [Contributing](http://sassdoc.com/contributinh/)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"url": "https://twitter.com/pascalduez"
1818
}
1919
],
20-
"version": "1.9.0",
20+
"version": "1.10.0",
2121
"license": {
2222
"type": "MIT",
2323
"url": "http://opensource.org/licenses/MIT"

sache.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "SassDoc",
3-
"description": "A documentation tool for Sass.",
4-
"tags": ["sass", "documentation", "functions", "mixins", "variables"]
3+
"description": "Release the docs!",
4+
"tags": ["sass", "documentation", "functions", "mixins", "variables", "placeholders", "theme"]
55
}

0 commit comments

Comments
 (0)