Skip to content

Commit

Permalink
Merge pull request orthros#44 from orthros/dev
Browse files Browse the repository at this point in the history
Version 2.0.3
  • Loading branch information
orthros authored May 15, 2019
2 parents 245b57b + 28783c2 commit 3ee1f1f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [2.0.3] - 2019-05-15
### Changed
- Raised `sdk` version constraint to 2.0.0
- Raised constraint on `async` to 3.0.0
### Fixed
- Merged pull request #40 by vblago.
- Fixes Undefined class 'XmlBuilder'

## [2.0.2] - 2018-08-07
### Changed
- Lowered sdk version constraint to 2.0.0-dev.61.0

## [2.0.1] - 2018-08-07
### Chaned
### Changed
- Formatted documents

## [2.0.0] - 2018-08-07
Expand Down
2 changes: 1 addition & 1 deletion lib/src/writers/epub_guide_writer.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:epub/src/schema/opf/epub_guide.dart';
import 'package:xml/xml/builder.dart';
import 'package:xml/src/xml/builder.dart' show XmlBuilder;

class EpubGuideWriter {
static void writeGuide(XmlBuilder builder, EpubGuide guide) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/writers/epub_manifest_writer.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:epub/src/schema/opf/epub_manifest.dart';
import 'package:xml/xml/builder.dart';
import 'package:xml/src/xml/builder.dart' show XmlBuilder;

class EpubManifestWriter {
static void writeManifest(XmlBuilder builder, EpubManifest manifest) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/writers/epub_metadata_writer.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:epub/src/schema/opf/epub_metadata.dart';
import 'package:epub/src/schema/opf/epub_version.dart';
import 'package:xml/xml/builder.dart';
import 'package:xml/src/xml/builder.dart' show XmlBuilder;

class EpubMetadataWriter {
static const _dc_namespace = "http://purl.org/dc/elements/1.1/";
Expand Down
2 changes: 1 addition & 1 deletion lib/src/writers/epub_package_writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:epub/src/schema/opf/epub_version.dart';
import 'package:epub/src/writers/epub_guide_writer.dart';
import 'package:epub/src/writers/epub_manifest_writer.dart';
import 'package:epub/src/writers/epub_spine_writer.dart';
import 'package:xml/xml/builder.dart';
import 'package:xml/src/xml/builder.dart' show XmlBuilder;
import 'epub_metadata_writer.dart';

class EpubPackageWriter {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/writers/epub_spine_writer.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:epub/src/schema/opf/epub_spine.dart';
import 'package:xml/xml/builder.dart';
import 'package:xml/src/xml/builder.dart' show XmlBuilder;

class EpubSpineWriter {
static void writeSpine(XmlBuilder builder, EpubSpine spine) {
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: epub
version: 2.0.2
version: 2.0.3
author: Colin Nelson <[email protected]>
description: Epub Parser for Dart. Suitable for use on the Server, the Web, or in Flutter
description: Epub Parser for Dart. Suitable for use on the Server, the Web, or in Flutter
homepage: https://github.com/orthros/dart-epub
environment:
sdk: ">=2.0.0-dev.61.0 <3.0.0"
sdk: ">=2.0.0 <3.0.0"
dependencies:
async: ">=1.8.0 <2.1.0"
async: ">=1.8.0 <3.0.0"
archive: "^2.0.0"
quiver: '>=2.0.0 <3.0.0'
xml: ">=2.6.0 <4.0.0"
image: ">=1.1.33 <3.0.0"
dart2_constant: ^1.0.1
dart2_constant: ^1.0.1
dev_dependencies:
test: "^1.0.0"
path: "^1.5.1"

0 comments on commit 3ee1f1f

Please sign in to comment.