Skip to content

Commit

Permalink
Prepare for 0.17.1+1. (#1632)
Browse files Browse the repository at this point in the history
A pub warning regarding a meta import that accidentally got
left in requires a new release.
  • Loading branch information
jcollins-g authored Mar 13, 2018
1 parent adf0364 commit fd4047a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.17.1+1
* Fix pub warning regarding unnecessary meta import.

## 0.17.1
* Fix rendering of bold markdown (#1618)
* Internal cleanups and refactors (#1626, #1624, #1622)
Expand Down
2 changes: 1 addition & 1 deletion lib/dartdoc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export 'src/sdk.dart';

const String name = 'dartdoc';
// Update when pubspec version changes.
const String version = '0.17.1';
const String version = '0.17.1+1';

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

Expand Down
2 changes: 0 additions & 2 deletions lib/src/element_type.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ library dartdoc.element_type;

import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/type.dart';
import 'package:meta/meta.dart';

import 'model.dart';

Expand Down Expand Up @@ -181,7 +180,6 @@ class TypeParameterElementType extends DefinedElementType {

/// An [ElementType] associated with an [Element].
abstract class DefinedElementType extends ElementType {
@visibleForTesting
final ModelElement _element;

DefinedElementType(DartType type, PackageGraph packageGraph, this._element,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -408,4 +408,4 @@ packages:
source: hosted
version: "2.1.13"
sdks:
dart: ">=2.0.0-dev.23.0 <=2.0.0-dev.34.0"
dart: ">=2.0.0-dev.23.0 <=2.0.0-dev.36.0"
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.17.1
version: 0.17.1+1
author: Dart Team <[email protected]>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc
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.17.1">
<meta name="generator" content="made with love by dartdoc 0.17.1+1">
<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 fd4047a

Please sign in to comment.