Skip to content

Commit

Permalink
xqt-platform 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdunn committed Mar 29, 2023
1 parent 6cba400 commit ec9606f
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Change Log

## 0.1 - 2023-03-29
1. `XmlChar` definition.
2. `XmlCharReader` to read the characters in a `CharSequence`.
3. Lexer character classes and codepoint constants.
4. Token type interface hierarchy.

### Token Provider Interfaces
1. XPath 1.0 - 4.0 (Editor's Draft)
2. XSLT Pattern 1.0 - 4.0 (Editor's Draft)
3. XPath Full Text 1.0 - 3.0 W3C Extensions
4. MarkLogic 6.0 - 9.0 Vendor Extensions
5. Saxon 9.8 - 11.0 Vendor Extensions
2 changes: 1 addition & 1 deletion src/xqt-platform-ft/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
2 changes: 1 addition & 1 deletion src/xqt-platform-marklogic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
2 changes: 1 addition & 1 deletion src/xqt-platform-saxon/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
2 changes: 1 addition & 1 deletion src/xqt-platform-xml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
2 changes: 1 addition & 1 deletion src/xqt-platform-xpath/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
2 changes: 1 addition & 1 deletion src/xqt-platform-xslt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "xqt-platform"
version = "0.1-SNAPSHOT"
version = "0.1"

rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().download =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import xqt.platform.xslt.v3.lexer.tokens.XsltPattern31TokenProvider
/**
* The tokens present in the XSLT Patterns 4.0 grammar.
*
* @see <a href="httpshttps://qt4cg.org/specifications/xslt-40/Overview.html#pattern-syntax">XSLT 4.0 (Editor's Draft) Patterns</a>
* @see <a href="https://qt4cg.org/specifications/xslt-40/Overview.html#pattern-syntax">XSLT 4.0 (Editor's Draft) Patterns</a>
*/
@W3CEditorsDraft
@Suppress("PropertyName")
Expand Down

0 comments on commit ec9606f

Please sign in to comment.