Skip to content

Commit e749247

Browse files
authored
Merge pull request #24 from ndw/main
Fixed small errors, bumped version
2 parents 8449ab9 + 8998360 commit e749247

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@ For the Java release, these files and an associated catalog are in the
88
`xmlresolver` jar file with the `data` classifier.
99

1010
For the C# release, these files and an associated catalog are in the
11-
`XmlResolverData` assembly. (At least that’s the current plan.)
11+
`XmlResolverData` assembly.
1212

1313
This repository is used as a subproject in the Java and C# repositories.
1414

15+
## Change Log
16+
17+
### January 2024
18+
19+
* Corrected an incorrect public identifier for `https://www.w3.org/2001/datatypes.dtd` in
20+
the manifest.
21+
* Corrected the system identifiers for the XML Catalogs V1.1 DTD. (They were incorrectly
22+
recorded as `uri` elements in the manifest where `system` was required.)
23+
* Bumped version to 6.0.0 to align with the refactored Java and C# resolvers

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = 1.2.1
2-
relVersion = 1.2.1
1+
version = 6.0.0
2+
relVersion = 6.0.0

src/data/manifest.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@
125125
</entry>
126126
<entry uri="root/www.w3.org/2001/datatypes.dtd">
127127
<public>-//W3C//DTD XSD 1.0 Datatypes//EN</public>
128-
<public>datatypes</public>
129128
<system>https://www.w3.org/2001/datatypes.dtd</system>
130129
</entry>
131130
<entry uri="root/www.w3.org/2001/xml.xsd">
@@ -1317,11 +1316,10 @@
13171316
</entry>
13181317
<entry uri="root/xmlcatalogs.org/schema/1.1/catalog.dtd">
13191318
<public>-//OASIS//DTD XML Catalogs V1.1//EN</public>
1320-
<uri>https://xmlcatalogs.org/schema/1.1/catalog.dtd</uri>
1321-
<uri>http://www.oasis-open.org/committees/entity/release/1.1/catalog.dtd</uri>
1319+
<system>https://xmlcatalogs.org/schema/1.1/catalog.dtd</system>
1320+
<system>http://www.oasis-open.org/committees/entity/release/1.1/catalog.dtd</system>
13221321
<namespace>urn:oasis:names:tc:entity:xmlns:xml:catalog</namespace>
13231322
<purpose>http://www.rddl.org/purposes#validation</purpose>
1324-
<nature>http://www.isi.edu/in-notes/iana/assignments/media-types/application/xml-dtd</nature>
13251323
<nature>https://www.iana.org/assignments/media-types/application/xml-dtd</nature>
13261324
</entry>
13271325
<entry uri="root/xmlresolver.org/data/resolver/succeeded/test/check.xml">

0 commit comments

Comments
 (0)