diff --git a/docs/android.md b/docs/android.md index 804427b8d..fe680bed6 100644 --- a/docs/android.md +++ b/docs/android.md @@ -51,93 +51,93 @@ Java compiler are only accessible from the processor path, therefore they have n #### Manifold Core ```groovy -compileOnly 'systems.manifold:manifold:2024.1.17' -implementation 'systems.manifold:manifold-rt:2024.1.17' +compileOnly 'systems.manifold:manifold:2024.1.18' +implementation 'systems.manifold:manifold-rt:2024.1.18' ``` #### Manifold : Extensions ```groovy -compileOnly 'systems.manifold:manifold-ext:2024.1.17' -implementation 'systems.manifold:manifold-ext-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-ext:2024.1.18' +implementation 'systems.manifold:manifold-ext-rt:2024.1.18' ``` #### Manifold : Props ```groovy -compileOnly 'systems.manifold:manifold-props:2024.1.17' -implementation 'systems.manifold:manifold-props-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-props:2024.1.18' +implementation 'systems.manifold:manifold-props-rt:2024.1.18' ``` #### Manifold : GraphQL ```groovy -compileOnly 'systems.manifold:manifold-graphql:2024.1.17' -implementation 'systems.manifold:manifold-graphql-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-graphql:2024.1.18' +implementation 'systems.manifold:manifold-graphql-rt:2024.1.18' ``` #### Manifold : JSON ```groovy -compileOnly 'systems.manifold:manifold-json:2024.1.17' -implementation 'systems.manifold:manifold-json-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-json:2024.1.18' +implementation 'systems.manifold:manifold-json-rt:2024.1.18' ``` #### Manifold : XML ```groovy -compileOnly 'systems.manifold:manifold-xml:2024.1.17' -implementation 'systems.manifold:manifold-xml-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-xml:2024.1.18' +implementation 'systems.manifold:manifold-xml-rt:2024.1.18' ``` #### Manifold : YAML ```groovy -compileOnly 'systems.manifold:manifold-yaml:2024.1.17' -implementation 'systems.manifold:manifold-yaml-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-yaml:2024.1.18' +implementation 'systems.manifold:manifold-yaml-rt:2024.1.18' ``` #### Manifold : CSV ```groovy -compileOnly 'systems.manifold:manifold-csv:2024.1.17' -implementation 'systems.manifold:manifold-csb-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-csv:2024.1.18' +implementation 'systems.manifold:manifold-csb-rt:2024.1.18' ``` #### Manifold : Properties Files ```groovy -compileOnly 'systems.manifold:manifold-properties:2024.1.17' +compileOnly 'systems.manifold:manifold-properties:2024.1.18' ``` #### Manifold : Image Files ```groovy -compileOnly 'systems.manifold:manifold-image:2024.1.17' +compileOnly 'systems.manifold:manifold-image:2024.1.18' ``` #### Manifold : JavaScript ```groovy -compileOnly 'systems.manifold:manifold-js:2024.1.17' -implementation 'systems.manifold:manifold-js-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-js:2024.1.18' +implementation 'systems.manifold:manifold-js-rt:2024.1.18' ``` #### Manifold : Templates ```groovy -compileOnly 'systems.manifold:manifold-templates:2024.1.17' -implementation 'systems.manifold:manifold-templates-rt:2024.1.17' +compileOnly 'systems.manifold:manifold-templates:2024.1.18' +implementation 'systems.manifold:manifold-templates-rt:2024.1.18' ``` #### Manifold : String Interpolation ```groovy -compileOnly 'systems.manifold:manifold-strings:2024.1.17' +compileOnly 'systems.manifold:manifold-strings:2024.1.18' ``` #### Manifold : (Un)checked Exceptions ```groovy -compileOnly 'systems.manifold:manifold-exceptions:2024.1.17' +compileOnly 'systems.manifold:manifold-exceptions:2024.1.18' ``` #### Manifold : Preprocessor ```groovy -compileOnly 'systems.manifold:manifold-preprocessor:2024.1.17' +compileOnly 'systems.manifold:manifold-preprocessor:2024.1.18' ``` #### Manifold : Preprocessor : Android Symbols ```groovy -compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.17' +compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.18' ``` #### Manifold : Science ```groovy -implementation 'systems.manifold:manifold-science:2024.1.17' +implementation 'systems.manifold:manifold-science:2024.1.18' ``` #### Manifold : Collections Extension ```groovy -implementation 'systems.manifold:manifold-collections:2024.1.17' +implementation 'systems.manifold:manifold-collections:2024.1.18' ``` #### Manifold : IO Extensions ```groovy -implementation 'systems.manifold:manifold-io:2024.1.17' +implementation 'systems.manifold:manifold-io:2024.1.18' ``` #### Manifold : Text Extensions ```groovy -implementation 'systems.manifold:manifold-text:2024.1.17' +implementation 'systems.manifold:manifold-text:2024.1.18' ``` ## Resources @@ -165,7 +165,7 @@ build.gradle ```groovy dependencies { ... - compileOnly 'systems.manifold:manifold-preprocessor:2024.1.17' - compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.17' + compileOnly 'systems.manifold:manifold-preprocessor:2024.1.18' + compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.18' } ``` \ No newline at end of file diff --git a/docs/articles/operator_overloading.md b/docs/articles/operator_overloading.md index 9323c4fcf..ce796b1d1 100644 --- a/docs/articles/operator_overloading.md +++ b/docs/articles/operator_overloading.md @@ -272,7 +272,7 @@ modules use operator overloading and unit expressions extensively. ##Update: _2020/11/13_ > ->Release 2024.1.17 adds additional operator overloading support for: +>Release 2024.1.18 adds additional operator overloading support for: > >* infix/postfix increment/decrement operators `++` and `--` >* compound assignment: operators `+=`, `-=`, `*=`, `/=`, `%=`, diff --git a/docs/articles/unchecked.md b/docs/articles/unchecked.md index 5afa7a6fb..987787227 100644 --- a/docs/articles/unchecked.md +++ b/docs/articles/unchecked.md @@ -59,10 +59,10 @@ existing project: ```groovy dependencies { // Add manifold-exceptions to neutralize checked exceptions - compile group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.17' + compile group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.18' // Add manifold-exceptions to -processorpath for javac (for Java 9+, not needed for Java 8) - annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.18' } tasks.withType(JavaCompile) { diff --git a/docs/cheatsheet.md_ b/docs/cheatsheet.md_ index 199c5c008..7a5d4099e 100644 --- a/docs/cheatsheet.md_ +++ b/docs/cheatsheet.md_ @@ -320,7 +320,7 @@ Enable the feature with the `manifold-strings` dependency: systems.manifold manifold-strings - 2024.1.17 + 2024.1.18 ``` @@ -629,7 +629,7 @@ To use Checked Exception handling you must add the `manifold-exceptions` depende systems.manifold manifold-exceptions - 2024.1.17 + 2024.1.18 ``` diff --git a/docs/docs.md b/docs/docs.md index ad9052b5d..39f47cf22 100644 --- a/docs/docs.md +++ b/docs/docs.md @@ -346,13 +346,13 @@ For the convenience of non-maven/non-gradle users you can directly download late >from the list above. > >For instance, to use the *manifold-preprocessor* jar using **Ant** your project needs: ->* [manifold-preprocessor-2024.1.17.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-preprocessor&v=RELEASE) ->* [manifold-2024.1.17.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold&v=RELEASE) ->* [manifold-util-2024.1.17.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-util&v=RELEASE) +>* [manifold-preprocessor-2024.1.18.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-preprocessor&v=RELEASE) +>* [manifold-2024.1.18.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold&v=RELEASE) +>* [manifold-util-2024.1.18.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-util&v=RELEASE) > >As such your *javac* command line should include: >```text ->javac -Xplugin:Manifold -classpath /manifold-preprocessor-2024.1.17.jar;/manifold-2024.1.17.jar;/manifold-util-2024.1.17.jar +>javac -Xplugin:Manifold -classpath /manifold-preprocessor-2024.1.18.jar;/manifold-2024.1.18.jar;/manifold-util-2024.1.18.jar >``` * Download [Manifold : _Core_](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold&v=RELEASE) diff --git a/manifold-all/pom.xml b/manifold-all/pom.xml index 33337c0f5..5ba33a49c 100644 --- a/manifold-all/pom.xml +++ b/manifold-all/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-all diff --git a/manifold-core-parent/manifold-rt/pom.xml b/manifold-core-parent/manifold-rt/pom.xml index 5cb8aeb6e..a1a6ed0f6 100644 --- a/manifold-core-parent/manifold-rt/pom.xml +++ b/manifold-core-parent/manifold-rt/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-core-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-rt diff --git a/manifold-core-parent/manifold/README.md b/manifold-core-parent/manifold/README.md index 60fc38773..e86c5bb7f 100644 --- a/manifold-core-parent/manifold/README.md +++ b/manifold-core-parent/manifold/README.md @@ -741,11 +741,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-rt:2024.1.17' + implementation 'systems.manifold:manifold-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.17' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.18' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -782,7 +782,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -835,10 +835,10 @@ Comprehensive IDE support is also available for IntelliJ IDEA and Android Studio # Javadoc `manifold`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold/2024.1.18) `manifold-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-rt/2024.1.18) # License diff --git a/manifold-core-parent/manifold/pom.xml b/manifold-core-parent/manifold/pom.xml index cb1f7e5dd..a3cf06482 100644 --- a/manifold-core-parent/manifold/pom.xml +++ b/manifold-core-parent/manifold/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-core-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold diff --git a/manifold-core-parent/pom.xml b/manifold-core-parent/pom.xml index 22b3f1f72..c7a31c063 100644 --- a/manifold-core-parent/pom.xml +++ b/manifold-core-parent/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-core-parent @@ -28,7 +28,7 @@ manifold-javadoc-agent provided true - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT
diff --git a/manifold-deps-parent/manifold-collections-test/pom.xml b/manifold-deps-parent/manifold-collections-test/pom.xml index 74f7d7303..b4d2c137d 100644 --- a/manifold-deps-parent/manifold-collections-test/pom.xml +++ b/manifold-deps-parent/manifold-collections-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-collections-test diff --git a/manifold-deps-parent/manifold-collections/README.md b/manifold-deps-parent/manifold-collections/README.md index b5395c510..2bb8c1fa1 100644 --- a/manifold-deps-parent/manifold-collections/README.md +++ b/manifold-deps-parent/manifold-collections/README.md @@ -177,10 +177,10 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-collections:2024.1.17' + implementation 'systems.manifold:manifold-collections:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-collections', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-collections', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -225,7 +225,7 @@ rootProject.name = 'MyExtProject' - 2024.1.17 + 2024.1.18 @@ -269,7 +269,7 @@ rootProject.name = 'MyExtProject' # Javadoc `manifold-collections`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-collections/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-collections/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-collections/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-collections/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-collections/pom.xml b/manifold-deps-parent/manifold-collections/pom.xml index 43bfcebcf..284fd4ac3 100644 --- a/manifold-deps-parent/manifold-collections/pom.xml +++ b/manifold-deps-parent/manifold-collections/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-collections diff --git a/manifold-deps-parent/manifold-csv-rt/pom.xml b/manifold-deps-parent/manifold-csv-rt/pom.xml index 07ab83d09..d6eefaa5c 100644 --- a/manifold-deps-parent/manifold-csv-rt/pom.xml +++ b/manifold-deps-parent/manifold-csv-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-csv-rt diff --git a/manifold-deps-parent/manifold-csv-test/pom.xml b/manifold-deps-parent/manifold-csv-test/pom.xml index b119239e1..8312d5636 100644 --- a/manifold-deps-parent/manifold-csv-test/pom.xml +++ b/manifold-deps-parent/manifold-csv-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-csv-test diff --git a/manifold-deps-parent/manifold-csv/README.md b/manifold-deps-parent/manifold-csv/README.md index 7c9259c45..fabe01e4b 100644 --- a/manifold-deps-parent/manifold-csv/README.md +++ b/manifold-deps-parent/manifold-csv/README.md @@ -324,11 +324,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-csv-rt:2024.1.17' + implementation 'systems.manifold:manifold-csv-rt:2024.1.18' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.17' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.18' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -364,7 +364,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -408,10 +408,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-csv`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv/2024.1.18) `manifold-csv-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-csv/pom.xml b/manifold-deps-parent/manifold-csv/pom.xml index 9ef5ffc64..0a35197fb 100644 --- a/manifold-deps-parent/manifold-csv/pom.xml +++ b/manifold-deps-parent/manifold-csv/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-csv diff --git a/manifold-deps-parent/manifold-darkj-test/pom.xml b/manifold-deps-parent/manifold-darkj-test/pom.xml index 3b284aae0..3442a4e75 100644 --- a/manifold-deps-parent/manifold-darkj-test/pom.xml +++ b/manifold-deps-parent/manifold-darkj-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-darkj-test diff --git a/manifold-deps-parent/manifold-darkj/README.md b/manifold-deps-parent/manifold-darkj/README.md index f3cefb0a6..a898ff64c 100644 --- a/manifold-deps-parent/manifold-darkj/README.md +++ b/manifold-deps-parent/manifold-darkj/README.md @@ -159,7 +159,7 @@ repositories { } dependencies { - implementation group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.17' + implementation group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.18' testCompile group: 'junit', name: 'junit', version: '4.12' if (JavaVersion.current() == JavaVersion.VERSION_1_8) { @@ -168,7 +168,7 @@ dependencies { compile files( "${System.properties['java.home']}/../lib/tools.jar" ) } // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -215,7 +215,7 @@ rootProject.name = 'MyDarkJavaProject' - 2024.1.17 + 2024.1.18 @@ -283,7 +283,7 @@ rootProject.name = 'MyDarkJavaProject' - 2024.1.17 + 2024.1.18 diff --git a/manifold-deps-parent/manifold-darkj/pom.xml b/manifold-deps-parent/manifold-darkj/pom.xml index 9263ef231..cef254fc7 100644 --- a/manifold-deps-parent/manifold-darkj/pom.xml +++ b/manifold-deps-parent/manifold-darkj/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-darkj diff --git a/manifold-deps-parent/manifold-delegation-rt/pom.xml b/manifold-deps-parent/manifold-delegation-rt/pom.xml index ac46fc1b0..82e8f0c9f 100644 --- a/manifold-deps-parent/manifold-delegation-rt/pom.xml +++ b/manifold-deps-parent/manifold-delegation-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-delegation-rt diff --git a/manifold-deps-parent/manifold-delegation-test/pom.xml b/manifold-deps-parent/manifold-delegation-test/pom.xml index debb23152..f801c2915 100644 --- a/manifold-deps-parent/manifold-delegation-test/pom.xml +++ b/manifold-deps-parent/manifold-delegation-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-delegation-test diff --git a/manifold-deps-parent/manifold-delegation/README.md b/manifold-deps-parent/manifold-delegation/README.md index 80ddb9616..39fd50895 100644 --- a/manifold-deps-parent/manifold-delegation/README.md +++ b/manifold-deps-parent/manifold-delegation/README.md @@ -476,11 +476,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-delegation-rt:2024.1.17' + implementation 'systems.manifold:manifold-delegation-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-delegation:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-delegation:2024.1.17' + annotationProcessor 'systems.manifold:manifold-delegation:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-delegation:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -516,7 +516,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -560,10 +560,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-delegation`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation/2024.1.18) `manifold-delegation-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-delegation/pom.xml b/manifold-deps-parent/manifold-delegation/pom.xml index 47acb2920..d9174dae1 100644 --- a/manifold-deps-parent/manifold-delegation/pom.xml +++ b/manifold-deps-parent/manifold-delegation/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-delegation diff --git a/manifold-deps-parent/manifold-exceptions-test/pom.xml b/manifold-deps-parent/manifold-exceptions-test/pom.xml index b72a3be5c..0877a1df6 100644 --- a/manifold-deps-parent/manifold-exceptions-test/pom.xml +++ b/manifold-deps-parent/manifold-exceptions-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-exceptions-test diff --git a/manifold-deps-parent/manifold-exceptions/README.md b/manifold-deps-parent/manifold-exceptions/README.md index 6efeaaa6b..a135025b4 100644 --- a/manifold-deps-parent/manifold-exceptions/README.md +++ b/manifold-deps-parent/manifold-exceptions/README.md @@ -128,11 +128,11 @@ repositories { } dependencies { - compileOnly 'systems.manifold:manifold-rt:2024.1.17' + compileOnly 'systems.manifold:manifold-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.17' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.18' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -168,7 +168,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -214,7 +214,7 @@ rootProject.name = 'MyProject' # Javadoc `manifold-exceptions`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-exceptions/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-exceptions/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-exceptions/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-exceptions/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-exceptions/pom.xml b/manifold-deps-parent/manifold-exceptions/pom.xml index 9ea62385b..1ef128eee 100644 --- a/manifold-deps-parent/manifold-exceptions/pom.xml +++ b/manifold-deps-parent/manifold-exceptions/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-exceptions diff --git a/manifold-deps-parent/manifold-ext-middle-test/pom.xml b/manifold-deps-parent/manifold-ext-middle-test/pom.xml index 817db9375..a64cc6150 100644 --- a/manifold-deps-parent/manifold-ext-middle-test/pom.xml +++ b/manifold-deps-parent/manifold-ext-middle-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext-middle-test diff --git a/manifold-deps-parent/manifold-ext-producer-sample-test/pom.xml b/manifold-deps-parent/manifold-ext-producer-sample-test/pom.xml index c3ec94131..4686761bc 100644 --- a/manifold-deps-parent/manifold-ext-producer-sample-test/pom.xml +++ b/manifold-deps-parent/manifold-ext-producer-sample-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext-producer-sample-test diff --git a/manifold-deps-parent/manifold-ext-producer-sample/pom.xml b/manifold-deps-parent/manifold-ext-producer-sample/pom.xml index dd88b9870..79d7730b5 100644 --- a/manifold-deps-parent/manifold-ext-producer-sample/pom.xml +++ b/manifold-deps-parent/manifold-ext-producer-sample/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext-producer-sample diff --git a/manifold-deps-parent/manifold-ext-rt/pom.xml b/manifold-deps-parent/manifold-ext-rt/pom.xml index b84c41216..98385d929 100644 --- a/manifold-deps-parent/manifold-ext-rt/pom.xml +++ b/manifold-deps-parent/manifold-ext-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext-rt diff --git a/manifold-deps-parent/manifold-ext-test/pom.xml b/manifold-deps-parent/manifold-ext-test/pom.xml index 8e41b12e9..fe7b925c6 100644 --- a/manifold-deps-parent/manifold-ext-test/pom.xml +++ b/manifold-deps-parent/manifold-ext-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext-test diff --git a/manifold-deps-parent/manifold-ext/README.md b/manifold-deps-parent/manifold-ext/README.md index d6528b53e..1c54dea08 100644 --- a/manifold-deps-parent/manifold-ext/README.md +++ b/manifold-deps-parent/manifold-ext/README.md @@ -2104,12 +2104,12 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-ext-rt:2024.1.17' + implementation 'systems.manifold:manifold-ext-rt:2024.1.18' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.17' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.18' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -2145,7 +2145,7 @@ rootProject.name = 'MyExtProject' - 2024.1.17 + 2024.1.18 @@ -2195,10 +2195,10 @@ with javadoc. # Javadoc `manifold-ext`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext/2024.1.18) `manifold-ext-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-ext/pom.xml b/manifold-deps-parent/manifold-ext/pom.xml index ef2f8fa27..b382b33ef 100644 --- a/manifold-deps-parent/manifold-ext/pom.xml +++ b/manifold-deps-parent/manifold-ext/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-ext diff --git a/manifold-deps-parent/manifold-graphql-rt/pom.xml b/manifold-deps-parent/manifold-graphql-rt/pom.xml index 94d9e3b0c..1aa4c518f 100644 --- a/manifold-deps-parent/manifold-graphql-rt/pom.xml +++ b/manifold-deps-parent/manifold-graphql-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-graphql-rt diff --git a/manifold-deps-parent/manifold-graphql-test/pom.xml b/manifold-deps-parent/manifold-graphql-test/pom.xml index 391df2e6d..ee32e9738 100644 --- a/manifold-deps-parent/manifold-graphql-test/pom.xml +++ b/manifold-deps-parent/manifold-graphql-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-graphql-test diff --git a/manifold-deps-parent/manifold-graphql/README.md b/manifold-deps-parent/manifold-graphql/README.md index e92aeda30..c1a134eaa 100644 --- a/manifold-deps-parent/manifold-graphql/README.md +++ b/manifold-deps-parent/manifold-graphql/README.md @@ -212,8 +212,8 @@ for (var movie : actionMovies) { >``` > Configure dependencies like this: > ```groovy -> implementation 'systems.manifold:manifold-props-rt:2024.1.17' -> annotationProcessor 'systems.manifold:manifold-props:2024.1.17' +> implementation 'systems.manifold:manifold-props-rt:2024.1.18' +> annotationProcessor 'systems.manifold:manifold-props:2024.1.18' >``` > See complete [setup docs](https://github.com/manifold-systems/manifold/tree/master/manifold-deps-parent/manifold-props#maven) for details. @@ -672,11 +672,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-graphql-rt:2024.1.17' + implementation 'systems.manifold:manifold-graphql-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-graphql:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-graphql:2024.1.17' + annotationProcessor 'systems.manifold:manifold-graphql:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-graphql:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -712,7 +712,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -756,10 +756,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-graphql`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql/2024.1.18) `manifold-graphql-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-graphql/pom.xml b/manifold-deps-parent/manifold-graphql/pom.xml index 50cdd2ac3..22b14cf16 100644 --- a/manifold-deps-parent/manifold-graphql/pom.xml +++ b/manifold-deps-parent/manifold-graphql/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-graphql diff --git a/manifold-deps-parent/manifold-highjump-test/pom.xml b/manifold-deps-parent/manifold-highjump-test/pom.xml index 6eda69615..64c0c5b72 100644 --- a/manifold-deps-parent/manifold-highjump-test/pom.xml +++ b/manifold-deps-parent/manifold-highjump-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-highjump-test diff --git a/manifold-deps-parent/manifold-highjump/pom.xml b/manifold-deps-parent/manifold-highjump/pom.xml index 06efe02b4..cbc0b9b32 100644 --- a/manifold-deps-parent/manifold-highjump/pom.xml +++ b/manifold-deps-parent/manifold-highjump/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-highjump diff --git a/manifold-deps-parent/manifold-image-test/pom.xml b/manifold-deps-parent/manifold-image-test/pom.xml index 518dcbb54..049c13cfc 100644 --- a/manifold-deps-parent/manifold-image-test/pom.xml +++ b/manifold-deps-parent/manifold-image-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-image-test diff --git a/manifold-deps-parent/manifold-image/README.md b/manifold-deps-parent/manifold-image/README.md index d64d3c516..dd88b4060 100644 --- a/manifold-deps-parent/manifold-image/README.md +++ b/manifold-deps-parent/manifold-image/README.md @@ -109,11 +109,11 @@ repositories { } dependencies { - compileOnly 'systems.manifold:manifold-rt:2024.1.17' + compileOnly 'systems.manifold:manifold-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-image:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-image:2024.1.17' + annotationProcessor 'systems.manifold:manifold-image:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-image:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -157,7 +157,7 @@ module MyProject { - 2024.1.17 + 2024.1.18 @@ -211,7 +211,7 @@ module my.image.app { # Javadoc `manifold-image`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-image/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-image/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-image/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-image/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-image/pom.xml b/manifold-deps-parent/manifold-image/pom.xml index 4613d4ad3..c8e99c513 100644 --- a/manifold-deps-parent/manifold-image/pom.xml +++ b/manifold-deps-parent/manifold-image/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-image diff --git a/manifold-deps-parent/manifold-io-test/pom.xml b/manifold-deps-parent/manifold-io-test/pom.xml index e16577f9b..6a19b8039 100644 --- a/manifold-deps-parent/manifold-io-test/pom.xml +++ b/manifold-deps-parent/manifold-io-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-io-test diff --git a/manifold-deps-parent/manifold-io/pom.xml b/manifold-deps-parent/manifold-io/pom.xml index 5dd215e1b..0cf22b43a 100644 --- a/manifold-deps-parent/manifold-io/pom.xml +++ b/manifold-deps-parent/manifold-io/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-io diff --git a/manifold-deps-parent/manifold-js-rt/pom.xml b/manifold-deps-parent/manifold-js-rt/pom.xml index 8f3722b4d..94cfa00f4 100644 --- a/manifold-deps-parent/manifold-js-rt/pom.xml +++ b/manifold-deps-parent/manifold-js-rt/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-js-rt diff --git a/manifold-deps-parent/manifold-js-test/pom.xml b/manifold-deps-parent/manifold-js-test/pom.xml index 35b8b0bb0..f449bb8d9 100644 --- a/manifold-deps-parent/manifold-js-test/pom.xml +++ b/manifold-deps-parent/manifold-js-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-js-test diff --git a/manifold-deps-parent/manifold-js/README.md b/manifold-deps-parent/manifold-js/README.md index 30de10300..bfc533669 100644 --- a/manifold-deps-parent/manifold-js/README.md +++ b/manifold-deps-parent/manifold-js/README.md @@ -192,11 +192,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-js-rt:2024.1.17' + implementation 'systems.manifold:manifold-js-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-js:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-js:2024.1.17' + annotationProcessor 'systems.manifold:manifold-js:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-js:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -232,7 +232,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 diff --git a/manifold-deps-parent/manifold-js/pom.xml b/manifold-deps-parent/manifold-js/pom.xml index 14491c1a2..4be7dec08 100644 --- a/manifold-deps-parent/manifold-js/pom.xml +++ b/manifold-deps-parent/manifold-js/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-js diff --git a/manifold-deps-parent/manifold-json-rt/pom.xml b/manifold-deps-parent/manifold-json-rt/pom.xml index 7b48107d8..e1582cc9b 100644 --- a/manifold-deps-parent/manifold-json-rt/pom.xml +++ b/manifold-deps-parent/manifold-json-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-json-rt diff --git a/manifold-deps-parent/manifold-json-test/pom.xml b/manifold-deps-parent/manifold-json-test/pom.xml index e9dea7922..ff43f653a 100644 --- a/manifold-deps-parent/manifold-json-test/pom.xml +++ b/manifold-deps-parent/manifold-json-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-json-test diff --git a/manifold-deps-parent/manifold-json/README.md b/manifold-deps-parent/manifold-json/README.md index 5b29afd1d..e523aa883 100644 --- a/manifold-deps-parent/manifold-json/README.md +++ b/manifold-deps-parent/manifold-json/README.md @@ -577,11 +577,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-json-rt:2024.1.17' + implementation 'systems.manifold:manifold-json-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-json:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-json:2024.1.17' + annotationProcessor 'systems.manifold:manifold-json:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-json:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -617,7 +617,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -661,10 +661,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-json`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json/2024.1.18) `manifold-json-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-json/pom.xml b/manifold-deps-parent/manifold-json/pom.xml index e73d21a5b..9ede13181 100644 --- a/manifold-deps-parent/manifold-json/pom.xml +++ b/manifold-deps-parent/manifold-json/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-json diff --git a/manifold-deps-parent/manifold-preprocessor-android-syms/pom.xml b/manifold-deps-parent/manifold-preprocessor-android-syms/pom.xml index 7b37973a2..ecc14e023 100644 --- a/manifold-deps-parent/manifold-preprocessor-android-syms/pom.xml +++ b/manifold-deps-parent/manifold-preprocessor-android-syms/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-preprocessor-android-syms diff --git a/manifold-deps-parent/manifold-preprocessor-test/pom.xml b/manifold-deps-parent/manifold-preprocessor-test/pom.xml index 582c4460b..2f4e878ca 100644 --- a/manifold-deps-parent/manifold-preprocessor-test/pom.xml +++ b/manifold-deps-parent/manifold-preprocessor-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-preprocessor-test diff --git a/manifold-deps-parent/manifold-preprocessor/pom.xml b/manifold-deps-parent/manifold-preprocessor/pom.xml index 444ebdf51..073486d52 100644 --- a/manifold-deps-parent/manifold-preprocessor/pom.xml +++ b/manifold-deps-parent/manifold-preprocessor/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-preprocessor diff --git a/manifold-deps-parent/manifold-preprocessor/readme.md b/manifold-deps-parent/manifold-preprocessor/readme.md index 94093b1cb..27fa86e72 100644 --- a/manifold-deps-parent/manifold-preprocessor/readme.md +++ b/manifold-deps-parent/manifold-preprocessor/readme.md @@ -443,8 +443,8 @@ repositories { dependencies { testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.17' + annotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -480,7 +480,7 @@ rootProject.name = 'MyPreprocessorProject' - 2024.1.17 + 2024.1.18 @@ -522,7 +522,7 @@ with javadoc. # Javadoc `manifold-preprocessor`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-preprocessor/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-preprocessor/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-preprocessor/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-preprocessor/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-properties-test/pom.xml b/manifold-deps-parent/manifold-properties-test/pom.xml index 53cee1376..6eef9869f 100644 --- a/manifold-deps-parent/manifold-properties-test/pom.xml +++ b/manifold-deps-parent/manifold-properties-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-properties-test diff --git a/manifold-deps-parent/manifold-properties/README.md b/manifold-deps-parent/manifold-properties/README.md index 19f448ad4..37a8b63e5 100644 --- a/manifold-deps-parent/manifold-properties/README.md +++ b/manifold-deps-parent/manifold-properties/README.md @@ -108,8 +108,8 @@ repositories { dependencies { testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-properties:2024.1.17' - compileOnly 'systems.manifold:manifold-rt:2024.1.17' + annotationProcessor 'systems.manifold:manifold-properties:2024.1.18' + compileOnly 'systems.manifold:manifold-rt:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -151,7 +151,7 @@ module MyProject { - 2024.1.17 + 2024.1.18 @@ -203,7 +203,7 @@ module my.properties.app { # Javadoc `manifold-properties`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-properties/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-properties/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-properties/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-properties/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-properties/pom.xml b/manifold-deps-parent/manifold-properties/pom.xml index 908d98826..240d0acaf 100644 --- a/manifold-deps-parent/manifold-properties/pom.xml +++ b/manifold-deps-parent/manifold-properties/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-properties diff --git a/manifold-deps-parent/manifold-props-middle-test/pom.xml b/manifold-deps-parent/manifold-props-middle-test/pom.xml index 833fb12eb..c9abcba0c 100644 --- a/manifold-deps-parent/manifold-props-middle-test/pom.xml +++ b/manifold-deps-parent/manifold-props-middle-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-props-middle-test diff --git a/manifold-deps-parent/manifold-props-rt/pom.xml b/manifold-deps-parent/manifold-props-rt/pom.xml index 73aa73300..59694aa8a 100644 --- a/manifold-deps-parent/manifold-props-rt/pom.xml +++ b/manifold-deps-parent/manifold-props-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-props-rt diff --git a/manifold-deps-parent/manifold-props-test/pom.xml b/manifold-deps-parent/manifold-props-test/pom.xml index 06bd69f69..9b417b99b 100644 --- a/manifold-deps-parent/manifold-props-test/pom.xml +++ b/manifold-deps-parent/manifold-props-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-props-test diff --git a/manifold-deps-parent/manifold-props/README.md b/manifold-deps-parent/manifold-props/README.md index 09a8854e9..4b28d6187 100644 --- a/manifold-deps-parent/manifold-props/README.md +++ b/manifold-deps-parent/manifold-props/README.md @@ -466,11 +466,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-props-rt:2024.1.17' + implementation 'systems.manifold:manifold-props-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-props:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-props:2024.1.17' + annotationProcessor 'systems.manifold:manifold-props:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-props:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -506,7 +506,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -555,10 +555,10 @@ with javadoc. # Javadoc `manifold-props`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props/2024.1.18) `manifold-props-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-props/pom.xml b/manifold-deps-parent/manifold-props/pom.xml index fd8e08047..19bd06ee2 100644 --- a/manifold-deps-parent/manifold-props/pom.xml +++ b/manifold-deps-parent/manifold-props/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-props diff --git a/manifold-deps-parent/manifold-science-test/pom.xml b/manifold-deps-parent/manifold-science-test/pom.xml index e0454602f..4b08c649c 100644 --- a/manifold-deps-parent/manifold-science-test/pom.xml +++ b/manifold-deps-parent/manifold-science-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-science-test diff --git a/manifold-deps-parent/manifold-science/README.md b/manifold-deps-parent/manifold-science/README.md index 24083c3b5..b5c260670 100644 --- a/manifold-deps-parent/manifold-science/README.md +++ b/manifold-deps-parent/manifold-science/README.md @@ -330,11 +330,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-science:2024.1.17' + implementation 'systems.manifold:manifold-science:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-ext:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-ext:2024.1.17' + annotationProcessor 'systems.manifold:manifold-ext:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-ext:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -370,7 +370,7 @@ rootProject.name = 'MyExtProject' - 2024.1.17 + 2024.1.18 @@ -414,7 +414,7 @@ rootProject.name = 'MyExtProject' # Javadoc `manifold-science`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-science/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-science/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-science/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-science/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-science/pom.xml b/manifold-deps-parent/manifold-science/pom.xml index 380a619d7..c5c7c2bdb 100644 --- a/manifold-deps-parent/manifold-science/pom.xml +++ b/manifold-deps-parent/manifold-science/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-science diff --git a/manifold-deps-parent/manifold-sql-inproc-test/pom.xml b/manifold-deps-parent/manifold-sql-inproc-test/pom.xml index 7ef0fda74..3e91506cd 100644 --- a/manifold-deps-parent/manifold-sql-inproc-test/pom.xml +++ b/manifold-deps-parent/manifold-sql-inproc-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-sql-inproc-test diff --git a/manifold-deps-parent/manifold-sql-outproc-test/pom.xml b/manifold-deps-parent/manifold-sql-outproc-test/pom.xml index 3e3c293b3..8e4e66684 100644 --- a/manifold-deps-parent/manifold-sql-outproc-test/pom.xml +++ b/manifold-deps-parent/manifold-sql-outproc-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-sql-outproc-test diff --git a/manifold-deps-parent/manifold-sql-rt/pom.xml b/manifold-deps-parent/manifold-sql-rt/pom.xml index efec6d2bd..44aab2169 100644 --- a/manifold-deps-parent/manifold-sql-rt/pom.xml +++ b/manifold-deps-parent/manifold-sql-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-sql-rt diff --git a/manifold-deps-parent/manifold-sql/pom.xml b/manifold-deps-parent/manifold-sql/pom.xml index 180be041e..e13e11038 100644 --- a/manifold-deps-parent/manifold-sql/pom.xml +++ b/manifold-deps-parent/manifold-sql/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-sql diff --git a/manifold-deps-parent/manifold-sql/readme.md b/manifold-deps-parent/manifold-sql/readme.md index 6326f48d7..b352576f0 100644 --- a/manifold-deps-parent/manifold-sql/readme.md +++ b/manifold-deps-parent/manifold-sql/readme.md @@ -207,9 +207,9 @@ repositories { dependencies { // Manifold dependencies - implementation 'systems.manifold:manifold-sql-rt:2024.1.17' - annotationProcessor 'systems.manifold:manifold-sql:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-sql:2024.1.17' + implementation 'systems.manifold:manifold-sql-rt:2024.1.18' + annotationProcessor 'systems.manifold:manifold-sql:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-sql:2024.1.18' // Add your JDBC driver here, this is just an example using postgres implementation 'org.postgresql:postgresql:42.6.0' @@ -250,7 +250,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 11 @@ -1322,10 +1322,10 @@ commands. You'll know instantly whether your SQL is valid and, if not, what is w # Javadoc `manifold-sql`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql/2024.1.18) `manifold-sql-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-strings-test-excl/pom.xml b/manifold-deps-parent/manifold-strings-test-excl/pom.xml index 4103b6fa1..4ff2bad8d 100644 --- a/manifold-deps-parent/manifold-strings-test-excl/pom.xml +++ b/manifold-deps-parent/manifold-strings-test-excl/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-strings-test-excl diff --git a/manifold-deps-parent/manifold-strings-test/pom.xml b/manifold-deps-parent/manifold-strings-test/pom.xml index 62259d8c4..3276d71b0 100644 --- a/manifold-deps-parent/manifold-strings-test/pom.xml +++ b/manifold-deps-parent/manifold-strings-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-strings-test diff --git a/manifold-deps-parent/manifold-strings/README.md b/manifold-deps-parent/manifold-strings/README.md index a1e22ba02..0a041ffb2 100644 --- a/manifold-deps-parent/manifold-strings/README.md +++ b/manifold-deps-parent/manifold-strings/README.md @@ -167,8 +167,8 @@ repositories { dependencies { testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-strings:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-strings:2024.1.17' + annotationProcessor 'systems.manifold:manifold-strings:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-strings:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -210,7 +210,7 @@ module MyProject { - 2024.1.17 + 2024.1.18 diff --git a/manifold-deps-parent/manifold-strings/pom.xml b/manifold-deps-parent/manifold-strings/pom.xml index 90feb3b6a..5d8e5f8f5 100644 --- a/manifold-deps-parent/manifold-strings/pom.xml +++ b/manifold-deps-parent/manifold-strings/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-strings diff --git a/manifold-deps-parent/manifold-templates-rt/pom.xml b/manifold-deps-parent/manifold-templates-rt/pom.xml index e16c98162..02140e2f0 100644 --- a/manifold-deps-parent/manifold-templates-rt/pom.xml +++ b/manifold-deps-parent/manifold-templates-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-templates-rt Manifold :: Templates Runtime diff --git a/manifold-deps-parent/manifold-templates-test/pom.xml b/manifold-deps-parent/manifold-templates-test/pom.xml index 39eb69084..b30e5a644 100644 --- a/manifold-deps-parent/manifold-templates-test/pom.xml +++ b/manifold-deps-parent/manifold-templates-test/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-templates-test diff --git a/manifold-deps-parent/manifold-templates/README.md b/manifold-deps-parent/manifold-templates/README.md index 51cfd8042..b11522cb4 100644 --- a/manifold-deps-parent/manifold-templates/README.md +++ b/manifold-deps-parent/manifold-templates/README.md @@ -766,11 +766,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-templates-rt:2024.1.17' + implementation 'systems.manifold:manifold-templates-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-templates:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-templates:2024.1.17' + annotationProcessor 'systems.manifold:manifold-templates:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-templates:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -806,7 +806,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -850,10 +850,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-templates`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates/2024.1.18) `manifold-templates-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-templates/pom.xml b/manifold-deps-parent/manifold-templates/pom.xml index 572a1369d..7e39fe0b0 100644 --- a/manifold-deps-parent/manifold-templates/pom.xml +++ b/manifold-deps-parent/manifold-templates/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-templates Manifold :: Templates diff --git a/manifold-deps-parent/manifold-test/pom.xml b/manifold-deps-parent/manifold-test/pom.xml index 0493929ab..7404512a4 100644 --- a/manifold-deps-parent/manifold-test/pom.xml +++ b/manifold-deps-parent/manifold-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-test diff --git a/manifold-deps-parent/manifold-text-test/pom.xml b/manifold-deps-parent/manifold-text-test/pom.xml index a3405f4bf..7964815e6 100644 --- a/manifold-deps-parent/manifold-text-test/pom.xml +++ b/manifold-deps-parent/manifold-text-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-text-test diff --git a/manifold-deps-parent/manifold-text/pom.xml b/manifold-deps-parent/manifold-text/pom.xml index be80efd6e..576355b76 100644 --- a/manifold-deps-parent/manifold-text/pom.xml +++ b/manifold-deps-parent/manifold-text/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-text diff --git a/manifold-deps-parent/manifold-tuple-rt/pom.xml b/manifold-deps-parent/manifold-tuple-rt/pom.xml index 9e24b44d2..a1754bc27 100644 --- a/manifold-deps-parent/manifold-tuple-rt/pom.xml +++ b/manifold-deps-parent/manifold-tuple-rt/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-tuple-rt diff --git a/manifold-deps-parent/manifold-tuple-test/pom.xml b/manifold-deps-parent/manifold-tuple-test/pom.xml index fb3daade4..f4d691662 100644 --- a/manifold-deps-parent/manifold-tuple-test/pom.xml +++ b/manifold-deps-parent/manifold-tuple-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-tuple-test diff --git a/manifold-deps-parent/manifold-tuple/README.md b/manifold-deps-parent/manifold-tuple/README.md index 8e3ac4d8a..823c00c45 100644 --- a/manifold-deps-parent/manifold-tuple/README.md +++ b/manifold-deps-parent/manifold-tuple/README.md @@ -244,11 +244,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-tuple-rt:2024.1.17' + implementation 'systems.manifold:manifold-tuple-rt:2024.1.18' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.17' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.17' + annotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.18' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -284,7 +284,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -328,10 +328,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-tuple`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple/2024.1.18) `manifold-tuple-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-tuple/pom.xml b/manifold-deps-parent/manifold-tuple/pom.xml index 36dede275..820d6c463 100644 --- a/manifold-deps-parent/manifold-tuple/pom.xml +++ b/manifold-deps-parent/manifold-tuple/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-tuple diff --git a/manifold-deps-parent/manifold-xml-rt/pom.xml b/manifold-deps-parent/manifold-xml-rt/pom.xml index 84c258f80..276c265a6 100644 --- a/manifold-deps-parent/manifold-xml-rt/pom.xml +++ b/manifold-deps-parent/manifold-xml-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-xml-rt diff --git a/manifold-deps-parent/manifold-xml-test/pom.xml b/manifold-deps-parent/manifold-xml-test/pom.xml index 861ab4844..9226427f0 100644 --- a/manifold-deps-parent/manifold-xml-test/pom.xml +++ b/manifold-deps-parent/manifold-xml-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-xml-test diff --git a/manifold-deps-parent/manifold-xml/README.md b/manifold-deps-parent/manifold-xml/README.md index 1cfb5a19c..1452d956b 100644 --- a/manifold-deps-parent/manifold-xml/README.md +++ b/manifold-deps-parent/manifold-xml/README.md @@ -333,11 +333,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-xml-rt:2024.1.17' + implementation 'systems.manifold:manifold-xml-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-xml:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-xml:2024.1.17' + annotationProcessor 'systems.manifold:manifold-xml:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-xml:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -373,7 +373,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -417,10 +417,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-xml`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml/2024.1.18) `manifold-xml-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-xml/pom.xml b/manifold-deps-parent/manifold-xml/pom.xml index fd13e5004..45c7a6245 100644 --- a/manifold-deps-parent/manifold-xml/pom.xml +++ b/manifold-deps-parent/manifold-xml/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-xml diff --git a/manifold-deps-parent/manifold-yaml-rt/pom.xml b/manifold-deps-parent/manifold-yaml-rt/pom.xml index 6cb514862..0f2365e1d 100644 --- a/manifold-deps-parent/manifold-yaml-rt/pom.xml +++ b/manifold-deps-parent/manifold-yaml-rt/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-yaml-rt diff --git a/manifold-deps-parent/manifold-yaml-test/pom.xml b/manifold-deps-parent/manifold-yaml-test/pom.xml index 6928fb3c4..858ff1557 100644 --- a/manifold-deps-parent/manifold-yaml-test/pom.xml +++ b/manifold-deps-parent/manifold-yaml-test/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-yaml-test diff --git a/manifold-deps-parent/manifold-yaml/README.md b/manifold-deps-parent/manifold-yaml/README.md index 0f7730905..497a66175 100644 --- a/manifold-deps-parent/manifold-yaml/README.md +++ b/manifold-deps-parent/manifold-yaml/README.md @@ -93,11 +93,11 @@ repositories { } dependencies { - implementation 'systems.manifold:manifold-yaml-rt:2024.1.17' + implementation 'systems.manifold:manifold-yaml-rt:2024.1.18' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-yaml:2024.1.17' - testAnnotationProcessor 'systems.manifold:manifold-yaml:2024.1.17' + annotationProcessor 'systems.manifold:manifold-yaml:2024.1.18' + testAnnotationProcessor 'systems.manifold:manifold-yaml:2024.1.18' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -133,7 +133,7 @@ rootProject.name = 'MyProject' - 2024.1.17 + 2024.1.18 @@ -177,10 +177,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-yaml`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml/2024.1.18) `manifold-yaml-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml-rt/2024.1.17/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml-rt/2024.1.17) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml-rt/2024.1.18/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml-rt/2024.1.18) # License diff --git a/manifold-deps-parent/manifold-yaml/pom.xml b/manifold-deps-parent/manifold-yaml/pom.xml index 0f531e38b..58621343a 100644 --- a/manifold-deps-parent/manifold-yaml/pom.xml +++ b/manifold-deps-parent/manifold-yaml/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-deps-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-yaml diff --git a/manifold-deps-parent/pom.xml b/manifold-deps-parent/pom.xml index dd6b8d6c8..96874dfe7 100644 --- a/manifold-deps-parent/pom.xml +++ b/manifold-deps-parent/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-deps-parent @@ -96,7 +96,7 @@ manifold-javadoc-agent provided true - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT
diff --git a/manifold-javadoc-agent/pom.xml b/manifold-javadoc-agent/pom.xml index f0e7e7ec9..a1058e03f 100644 --- a/manifold-javadoc-agent/pom.xml +++ b/manifold-javadoc-agent/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-javadoc-agent diff --git a/manifold-util/pom.xml b/manifold-util/pom.xml index be49087b5..bb746f7a9 100644 --- a/manifold-util/pom.xml +++ b/manifold-util/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-parent - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT manifold-util diff --git a/pom.xml b/pom.xml index 95f468b05..719a36bdf 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent pom - 2024.1.17-SNAPSHOT + 2024.1.18-SNAPSHOT Manifold :: Parent