Skip to content

Commit

Permalink
Merge pull request #24 from takahashim/v510
Browse files Browse the repository at this point in the history
use v5.1.0
  • Loading branch information
takahashim committed Jul 10, 2023
2 parents 4f50d46 + 97c391f commit 5e2a727
Show file tree
Hide file tree
Showing 51 changed files with 32 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ To install this gem onto your local machine, run `bundle exec rake install`. To

## History

### v5.1.0.0

* support EPUBCheck 5.1.0

### v5.0.1.0

* support EPUBCheck 5.0.1
Expand Down
2 changes: 1 addition & 1 deletion epubcheck-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 12.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
end
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@

# EPUBCheck change log

<a name="5.0.1"></a>
# [5.0.1](https://github.com/w3c/epubcheck/compare/v5.0.0...v5.0.1) (2023-04-30)
<a name="5.1.0"></a>
# [5.1.0](https://github.com/w3c/epubcheck/compare/v5.0.1...v5.1.0) (2023-07-07)

This is the **latest production-ready** release of EPUBCheck. It can be used to check conformance to the [EPUB 3.3](https://www.w3.org/TR/epub-33/) specification.

This release was made by the DAISY Consortium for W3C. Many thanks to everyone who contributed and reported issues!

This EPUBCheck version is also available in the Maven Central Repository as [`org.w3c:epubcheck:5.0.1`](https://search.maven.org/artifact/org.w3c/epubcheck/5.0.1/jar).
This EPUBCheck version is also available in the Maven Central Repository as [`org.w3c:epubcheck:5.1.0`](https://search.maven.org/artifact/org.w3c/epubcheck/5.1.0/jar).

### Features

* update to latest schemas from the Nu HTML Checker ([2f6a2c7](https://github.com/w3c/epubcheck/commit/2f6a2c7))
* warn about `doc-endnote` or `doc-biblioentry` on list items ([5c39157](https://github.com/w3c/epubcheck/commit/5c39157))

### Bug Fixes

* `dc:source` element caused a `NullPointerException` ([c15e4ea](https://github.com/w3c/epubcheck/commit/c15e4ea)), closes [#1514](https://github.com/w3c/epubcheck/issues/1514)
* allow flow content for `ins` and `del` XHTML 1.1 elements (EPUB 2.0.1) ([d916df0](https://github.com/w3c/epubcheck/commit/d916df0)), closes [#1522](https://github.com/w3c/epubcheck/issues/1522)
* incorrect ID refs in toc nav caused a `NullPointerException` ([f7b5dd9](https://github.com/w3c/epubcheck/commit/f7b5dd9)), closes [#1516](https://github.com/w3c/epubcheck/issues/1516)
* make CLI return `0` for `--version` or `--help` options ([49aacb2](https://github.com/w3c/epubcheck/commit/49aacb2)), closes [#1520](https://github.com/w3c/epubcheck/issues/1520)
* properly set font fields in the JSON report ([8575a6b](https://github.com/w3c/epubcheck/commit/8575a6b)), closes [#1519](https://github.com/w3c/epubcheck/issues/1519)
* properly set the `referencedItems` field in the JSON report ([7804c78](https://github.com/w3c/epubcheck/commit/7804c78))
* properly set the rendition fields in the JSON report ([da643e4](https://github.com/w3c/epubcheck/commit/da643e4))
* remove undefined `isHTML5` field from the JSON report ([00b1d20](https://github.com/w3c/epubcheck/commit/00b1d20))
* remove undefined `navigationOrder` field from the JSON report ([39234a6](https://github.com/w3c/epubcheck/commit/39234a6))
* remove undefined script-related fields from the JSON report ([1931d73](https://github.com/w3c/epubcheck/commit/1931d73))
* updated list of allowed values for the OPF 2.0.1 `role` attribute ([0573214](https://github.com/w3c/epubcheck/commit/0573214)), closes [#1521](https://github.com/w3c/epubcheck/issues/1521)


<a name="5.0.1"></a>
# [5.0.1](https://github.com/w3c/epubcheck/compare/v5.0.0...v5.0.1) (2023-04-30)

### Features

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/epubcheck/ruby/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Epubcheck
module Ruby
class CLI
JAR_FILE = File.join(Epubcheck::Ruby::JAR_DIR, 'epubcheck-5.0.1/epubcheck.jar')
JAR_FILE = File.join(Epubcheck::Ruby::JAR_DIR, 'epubcheck-5.1.0/epubcheck.jar')

def initialize
end
Expand Down
2 changes: 1 addition & 1 deletion lib/epubcheck/ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Epubcheck
module Ruby
VERSION = "5.0.1.0"
VERSION = "5.1.0.0"
end
end

0 comments on commit 5e2a727

Please sign in to comment.