Skip to content

Commit 1da6b85

Browse files
authored
rev to 0.9.11; prep for publishing (#1336)
* rev to 0.9.11; prep for publishing * Update CHANGELOG.md
1 parent cda9784 commit 1da6b85

File tree

12 files changed

+13
-26
lines changed

12 files changed

+13
-26
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
## 0.9.11
2+
13
* add annotations to features line for methods, properties, constants (#1265)
4+
* fixed an issue where the search box wasn't selecting the correct result (#1330)
25

36
## 0.9.10
47
* de-emphasize and resort the inherited members (#641)

lib/dartdoc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export 'src/package_meta.dart';
4040

4141
const String name = 'dartdoc';
4242
// Update when pubspec version changes.
43-
const String version = '0.9.10';
43+
const String version = '0.9.11';
4444

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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dartdoc
22
# Also update the `version` field in lib/dartdoc.dart.
3-
version: 0.9.10
3+
version: 0.9.11
44
author: Dart Team <[email protected]>
55
description: A documentation generator for Dart.
66
homepage: https://github.com/dart-lang/dartdoc

testing/test_package/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
doc/api/
2+
pubspec.lock

testing/test_package/pubspec.lock

Lines changed: 0 additions & 17 deletions
This file was deleted.

testing/test_package_docs/fake/ExtraSpecialList-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ <h2>Methods</h2>
533533
</span>
534534
</dt>
535535
<dd class="inherited">
536-
<p>Removes the first occurence of <code>value</code> from this list.</p>
536+
<p>Removes the first occurrence of <code>value</code> from this list.</p>
537537
<div class="features">inherited</div>
538538
</dd>
539539
<dt id="removeAt" class="callable inherited">

testing/test_package_docs/fake/ExtraSpecialList/remove.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
153153
<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>)
154154
</section>
155155
<section class="desc markdown">
156-
<p>Removes the first occurence of <code>value</code> from this list.</p>
156+
<p>Removes the first occurrence of <code>value</code> from this list.</p>
157157
<p>Returns true if <code>value</code> was in the list, false otherwise.</p>
158158
<pre class="prettyprint language-dart"><code>List&lt;String&gt; parts = ['head', 'shoulders', 'knees', 'toes'];
159159
parts.remove('head'); // true

testing/test_package_docs/fake/ExtraSpecialList/setRange.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ <h5><a href="fake/ExtraSpecialList-class.html">ExtraSpecialList</a></h5>
168168
<code>end - start</code>. An empty range (with <code>end == start</code>) is valid.</p>
169169
<p>The <code>iterable</code> must have enough objects to fill the range from <code>start</code>
170170
to <code>end</code> after skipping <code>skipCount</code> objects.</p>
171-
<p>If <code>iterable</code> is this list, the operation will copies the elements
171+
<p>If <code>iterable</code> is this list, the operation copies the elements
172172
originally in the range from <code>skipCount</code> to <code>skipCount + (end - start)</code> to
173173
the range <code>start</code> to <code>end</code>, even if the two ranges overlap.</p>
174174
<p>If <code>iterable</code> depends on this list in some other way, no guarantees are

testing/test_package_docs/fake/SpecialList-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ <h2>Methods</h2>
536536
</span>
537537
</dt>
538538
<dd class="inherited">
539-
<p>Removes the first occurence of <code>value</code> from this list.</p>
539+
<p>Removes the first occurrence of <code>value</code> from this list.</p>
540540
<div class="features">inherited</div>
541541
</dd>
542542
<dt id="removeAt" class="callable inherited">

testing/test_package_docs/fake/SpecialList/remove.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h5><a href="fake/SpecialList-class.html">SpecialList</a></h5>
153153
<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>)
154154
</section>
155155
<section class="desc markdown">
156-
<p>Removes the first occurence of <code>value</code> from this list.</p>
156+
<p>Removes the first occurrence of <code>value</code> from this list.</p>
157157
<p>Returns true if <code>value</code> was in the list, false otherwise.</p>
158158
<pre class="prettyprint language-dart"><code>List&lt;String&gt; parts = ['head', 'shoulders', 'knees', 'toes'];
159159
parts.remove('head'); // true

0 commit comments

Comments
 (0)