Skip to content

Commit

Permalink
rev to 0.9.11; prep for publishing (#1336)
Browse files Browse the repository at this point in the history
* rev to 0.9.11; prep for publishing

* Update CHANGELOG.md
  • Loading branch information
devoncarew authored Jan 31, 2017
1 parent cda9784 commit 1da6b85
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 26 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 0.9.11

* add annotations to features line for methods, properties, constants (#1265)
* fixed an issue where the search box wasn't selecting the correct result (#1330)

## 0.9.10
* de-emphasize and resort the inherited members (#641)
Expand Down
2 changes: 1 addition & 1 deletion lib/dartdoc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export 'src/package_meta.dart';

const String name = 'dartdoc';
// Update when pubspec version changes.
const String version = '0.9.10';
const String version = '0.9.11';

final String defaultOutDir = path.join('doc', 'api');

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dartdoc
# Also update the `version` field in lib/dartdoc.dart.
version: 0.9.10
version: 0.9.11
author: Dart Team <[email protected]>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc
Expand Down
1 change: 1 addition & 0 deletions testing/test_package/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
doc/api/
pubspec.lock
17 changes: 0 additions & 17 deletions testing/test_package/pubspec.lock

This file was deleted.

2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/ExtraSpecialList-class.html
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ <h2>Methods</h2>
</span>
</dt>
<dd class="inherited">
<p>Removes the first occurence of <code>value</code> from this list.</p>
<p>Removes the first occurrence of <code>value</code> from this list.</p>
<div class="features">inherited</div>
</dd>
<dt id="removeAt" class="callable inherited">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
<span class="name ">remove</span>(<wbr><span class="parameter" id="remove-param-element"><span class="type-annotation">Object</span> <span class="parameter-name">element</span></span>)
</section>
<section class="desc markdown">
<p>Removes the first occurence of <code>value</code> from this list.</p>
<p>Removes the first occurrence of <code>value</code> from this list.</p>
<p>Returns true if <code>value</code> was in the list, false otherwise.</p>
<pre class="prettyprint language-dart"><code>List&lt;String&gt; parts = ['head', 'shoulders', 'knees', 'toes'];
parts.remove('head'); // true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
<code>end - start</code>. An empty range (with <code>end == start</code>) is valid.</p>
<p>The <code>iterable</code> must have enough objects to fill the range from <code>start</code>
to <code>end</code> after skipping <code>skipCount</code> objects.</p>
<p>If <code>iterable</code> is this list, the operation will copies the elements
<p>If <code>iterable</code> is this list, the operation copies the elements
originally in the range from <code>skipCount</code> to <code>skipCount + (end - start)</code> to
the range <code>start</code> to <code>end</code>, even if the two ranges overlap.</p>
<p>If <code>iterable</code> depends on this list in some other way, no guarantees are
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/SpecialList-class.html
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ <h2>Methods</h2>
</span>
</dt>
<dd class="inherited">
<p>Removes the first occurence of <code>value</code> from this list.</p>
<p>Removes the first occurrence of <code>value</code> from this list.</p>
<div class="features">inherited</div>
</dd>
<dt id="removeAt" class="callable inherited">
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/SpecialList/remove.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
<span class="name ">remove</span>(<wbr><span class="parameter" id="remove-param-element"><span class="type-annotation">Object</span> <span class="parameter-name">element</span></span>)
</section>
<section class="desc markdown">
<p>Removes the first occurence of <code>value</code> from this list.</p>
<p>Removes the first occurrence of <code>value</code> from this list.</p>
<p>Returns true if <code>value</code> was in the list, false otherwise.</p>
<pre class="prettyprint language-dart"><code>List&lt;String&gt; parts = ['head', 'shoulders', 'knees', 'toes'];
parts.remove('head'); // true
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/fake/SpecialList/setRange.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
<code>end - start</code>. An empty range (with <code>end == start</code>) is valid.</p>
<p>The <code>iterable</code> must have enough objects to fill the range from <code>start</code>
to <code>end</code> after skipping <code>skipCount</code> objects.</p>
<p>If <code>iterable</code> is this list, the operation will copies the elements
<p>If <code>iterable</code> is this list, the operation copies the elements
originally in the range from <code>skipCount</code> to <code>skipCount + (end - start)</code> to
the range <code>start</code> to <code>end</code>, even if the two ranges overlap.</p>
<p>If <code>iterable</code> depends on this list in some other way, no guarantees are
Expand Down
2 changes: 1 addition & 1 deletion testing/test_package_docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="made with love by dartdoc 0.9.10">
<meta name="generator" content="made with love by dartdoc 0.9.11">
<meta name="description" content="test_package API docs, for the Dart programming language.">
<title>test_package - Dart API docs</title>

Expand Down

0 comments on commit 1da6b85

Please sign in to comment.