Skip to content

rev to 0.9.11; prep for publishing #1336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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