Skip to content

Commit

Permalink
Add tests and fix identified bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
prakanth97 committed Mar 1, 2024
1 parent 8cd7cde commit 9c9b207
Show file tree
Hide file tree
Showing 19 changed files with 382 additions and 144 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Take for instance the following XML snippet:

```xml
<book>
<id>0</id>
<id>601970</id>
<title>string</title>
<author>string</author>
</book>
Expand Down Expand Up @@ -99,7 +99,7 @@ Consider the XML snippet:

```xml
<book>
<id>0</id>
<id>601970</id>
<title-name>string</title-name>
<author-name>string</author-name>
</book>
Expand Down Expand Up @@ -139,7 +139,7 @@ Consider the following XML snippet:

```xml
<book lang="en" price="10.5">
<id>0</id>
<id>601970</id>
<title>string</title>
<author>string</author>
</book>
Expand Down Expand Up @@ -167,7 +167,7 @@ Examine the XML snippet below:

```xml
<book>
<id>0</id>
<id>601970</id>
<title>string</title>
<author>
<name>string</name>
Expand Down Expand Up @@ -216,7 +216,7 @@ Consider the XML snippet below:

```xml
<book>
<id>0</id>
<id>601970</id>
<title>string</title>
<author>string</author>
<available>true</available>
Expand All @@ -242,7 +242,7 @@ For instance, examine this XML:

```xml
<book>
<id>0</id>
<id>601970</id>
<title lang="en">string</title>
<price>10.5</price>
</book>
Expand Down Expand Up @@ -273,7 +273,7 @@ Examine the XML snippet below with default namespaces:

```xml
<book xmlns="http://example.com/book">
<id>0</id>
<id>601970</id>
<title>string</title>
<author>string</author>
</book>
Expand Down Expand Up @@ -308,7 +308,7 @@ Here is the same XML snippet with a namespace prefix:

```xml
<bk:book xmlns:bk="http://example.com/book">
<bk:id>0</bk:id>
<bk:id>601970</bk:id>
<bk:title>string</bk:title>
<bk:author>string</bk:author>
</bk:book>
Expand Down Expand Up @@ -342,7 +342,7 @@ Here is the same XML snippet with a namespace prefix:

```xml
<bk:book xmlns:bk="http://example.com/book" xmlns:au="http://example.com/author">
<bk:id>0</bk:id>
<bk:id>601970</bk:id>
<bk:title>string</bk:title>
<au:author>string</au:author>
</bk:book>
Expand Down Expand Up @@ -386,7 +386,7 @@ Take the following XML snippet as an example:

```xml
<book>
<id>0</id>
<id>601970</id>
<title>string</title>
<author>string</author>
<author>string</author>
Expand All @@ -412,7 +412,7 @@ Take this XML snippet as an example:

```xml
<book lang="en">
<id>0</id>
<id>601970</id>
<title lang="en">string</title>
<author>string</author>
<price>10.5</price>
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Ballerina"]
keywords = ["xml"]
repository = "https://github.com/ballerina-platform/module-ballerina-data-xmldata"
license = ["Apache-2.0"]
distribution = "2201.8.4"
distribution = "2201.8.5"
export = ["data.xmldata"]

[[platform.java17.dependency]]
Expand Down
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.8.4"
distribution-version = "2201.8.5"

[[package]]
org = "ballerina"
Expand Down
Loading

0 comments on commit 9c9b207

Please sign in to comment.