diff --git a/docs/android.md b/docs/android.md index cb93a4b92..012df83d0 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.22' -implementation 'systems.manifold:manifold-rt:2024.1.22' +compileOnly 'systems.manifold:manifold:2024.1.23' +implementation 'systems.manifold:manifold-rt:2024.1.23' ``` #### Manifold : Extensions ```groovy -compileOnly 'systems.manifold:manifold-ext:2024.1.22' -implementation 'systems.manifold:manifold-ext-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-ext:2024.1.23' +implementation 'systems.manifold:manifold-ext-rt:2024.1.23' ``` #### Manifold : Props ```groovy -compileOnly 'systems.manifold:manifold-props:2024.1.22' -implementation 'systems.manifold:manifold-props-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-props:2024.1.23' +implementation 'systems.manifold:manifold-props-rt:2024.1.23' ``` #### Manifold : GraphQL ```groovy -compileOnly 'systems.manifold:manifold-graphql:2024.1.22' -implementation 'systems.manifold:manifold-graphql-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-graphql:2024.1.23' +implementation 'systems.manifold:manifold-graphql-rt:2024.1.23' ``` #### Manifold : JSON ```groovy -compileOnly 'systems.manifold:manifold-json:2024.1.22' -implementation 'systems.manifold:manifold-json-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-json:2024.1.23' +implementation 'systems.manifold:manifold-json-rt:2024.1.23' ``` #### Manifold : XML ```groovy -compileOnly 'systems.manifold:manifold-xml:2024.1.22' -implementation 'systems.manifold:manifold-xml-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-xml:2024.1.23' +implementation 'systems.manifold:manifold-xml-rt:2024.1.23' ``` #### Manifold : YAML ```groovy -compileOnly 'systems.manifold:manifold-yaml:2024.1.22' -implementation 'systems.manifold:manifold-yaml-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-yaml:2024.1.23' +implementation 'systems.manifold:manifold-yaml-rt:2024.1.23' ``` #### Manifold : CSV ```groovy -compileOnly 'systems.manifold:manifold-csv:2024.1.22' -implementation 'systems.manifold:manifold-csb-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-csv:2024.1.23' +implementation 'systems.manifold:manifold-csb-rt:2024.1.23' ``` #### Manifold : Properties Files ```groovy -compileOnly 'systems.manifold:manifold-properties:2024.1.22' +compileOnly 'systems.manifold:manifold-properties:2024.1.23' ``` #### Manifold : Image Files ```groovy -compileOnly 'systems.manifold:manifold-image:2024.1.22' +compileOnly 'systems.manifold:manifold-image:2024.1.23' ``` #### Manifold : JavaScript ```groovy -compileOnly 'systems.manifold:manifold-js:2024.1.22' -implementation 'systems.manifold:manifold-js-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-js:2024.1.23' +implementation 'systems.manifold:manifold-js-rt:2024.1.23' ``` #### Manifold : Templates ```groovy -compileOnly 'systems.manifold:manifold-templates:2024.1.22' -implementation 'systems.manifold:manifold-templates-rt:2024.1.22' +compileOnly 'systems.manifold:manifold-templates:2024.1.23' +implementation 'systems.manifold:manifold-templates-rt:2024.1.23' ``` #### Manifold : String Interpolation ```groovy -compileOnly 'systems.manifold:manifold-strings:2024.1.22' +compileOnly 'systems.manifold:manifold-strings:2024.1.23' ``` #### Manifold : (Un)checked Exceptions ```groovy -compileOnly 'systems.manifold:manifold-exceptions:2024.1.22' +compileOnly 'systems.manifold:manifold-exceptions:2024.1.23' ``` #### Manifold : Preprocessor ```groovy -compileOnly 'systems.manifold:manifold-preprocessor:2024.1.22' +compileOnly 'systems.manifold:manifold-preprocessor:2024.1.23' ``` #### Manifold : Preprocessor : Android Symbols ```groovy -compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.22' +compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.23' ``` #### Manifold : Science ```groovy -implementation 'systems.manifold:manifold-science:2024.1.22' +implementation 'systems.manifold:manifold-science:2024.1.23' ``` #### Manifold : Collections Extension ```groovy -implementation 'systems.manifold:manifold-collections:2024.1.22' +implementation 'systems.manifold:manifold-collections:2024.1.23' ``` #### Manifold : IO Extensions ```groovy -implementation 'systems.manifold:manifold-io:2024.1.22' +implementation 'systems.manifold:manifold-io:2024.1.23' ``` #### Manifold : Text Extensions ```groovy -implementation 'systems.manifold:manifold-text:2024.1.22' +implementation 'systems.manifold:manifold-text:2024.1.23' ``` ## Resources @@ -165,7 +165,7 @@ build.gradle ```groovy dependencies { ... - compileOnly 'systems.manifold:manifold-preprocessor:2024.1.22' - compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.22' + compileOnly 'systems.manifold:manifold-preprocessor:2024.1.23' + compileOnly 'systems.manifold:manifold-preprocessor-android-syms:2024.1.23' } ``` \ No newline at end of file diff --git a/docs/articles/operator_overloading.md b/docs/articles/operator_overloading.md index e442d34b9..8332fec0f 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.22 adds additional operator overloading support for: +>Release 2024.1.23 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 facda2c70..d9245a361 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.22' + compile group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.23' // 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.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.23' } tasks.withType(JavaCompile) { diff --git a/docs/cheatsheet.md_ b/docs/cheatsheet.md_ index f66bf124f..3db2cc812 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.22 + 2024.1.23 ``` @@ -629,7 +629,7 @@ To use Checked Exception handling you must add the `manifold-exceptions` depende systems.manifold manifold-exceptions - 2024.1.22 + 2024.1.23 ``` diff --git a/docs/docs.md b/docs/docs.md index 4953cac37..264a8740e 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.22.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-preprocessor&v=RELEASE) ->* [manifold-2024.1.22.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold&v=RELEASE) ->* [manifold-util-2024.1.22.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.23.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold-preprocessor&v=RELEASE) +>* [manifold-2024.1.23.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=systems.manifold&a=manifold&v=RELEASE) +>* [manifold-util-2024.1.23.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.22.jar;/manifold-2024.1.22.jar;/manifold-util-2024.1.22.jar +>javac -Xplugin:Manifold -classpath /manifold-preprocessor-2024.1.23.jar;/manifold-2024.1.23.jar;/manifold-util-2024.1.23.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 327a3ec56..bbce6c139 100644 --- a/manifold-all/pom.xml +++ b/manifold-all/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-all diff --git a/manifold-core-parent/manifold-rt/pom.xml b/manifold-core-parent/manifold-rt/pom.xml index 7bbcebd48..6892858d7 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-rt diff --git a/manifold-core-parent/manifold/README.md b/manifold-core-parent/manifold/README.md index 7aece5db1..6d087259c 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.22' + implementation 'systems.manifold:manifold-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.22' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.23' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -782,7 +782,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -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.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold/2024.1.23) `manifold-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-rt/2024.1.23) # License diff --git a/manifold-core-parent/manifold/pom.xml b/manifold-core-parent/manifold/pom.xml index dd198523c..d73809627 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold diff --git a/manifold-core-parent/pom.xml b/manifold-core-parent/pom.xml index 5bd1f93f2..0c3c9d0ce 100644 --- a/manifold-core-parent/pom.xml +++ b/manifold-core-parent/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-core-parent @@ -28,7 +28,7 @@ manifold-javadoc-agent provided true - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT
diff --git a/manifold-deps-parent/manifold-collections-test/pom.xml b/manifold-deps-parent/manifold-collections-test/pom.xml index 870b18f12..bbc2b8f36 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-collections-test diff --git a/manifold-deps-parent/manifold-collections/README.md b/manifold-deps-parent/manifold-collections/README.md index 796c5b827..ef49b1de1 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.22' + implementation 'systems.manifold:manifold-collections:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-collections', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-collections', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -225,7 +225,7 @@ rootProject.name = 'MyExtProject' - 2024.1.22 + 2024.1.23 @@ -269,7 +269,7 @@ rootProject.name = 'MyExtProject' # Javadoc `manifold-collections`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-collections/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-collections/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-collections/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-collections/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-collections/pom.xml b/manifold-deps-parent/manifold-collections/pom.xml index 4b36b01f9..5214d89ee 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-collections diff --git a/manifold-deps-parent/manifold-csv-rt/pom.xml b/manifold-deps-parent/manifold-csv-rt/pom.xml index bb2b04320..def8ab45e 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.22-SNAPSHOT + 2024.1.23-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 d5a385a47..6d9149087 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-csv-test diff --git a/manifold-deps-parent/manifold-csv/README.md b/manifold-deps-parent/manifold-csv/README.md index 61dca9188..f255d2978 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.22' + implementation 'systems.manifold:manifold-csv-rt:2024.1.23' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.22' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.23' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-csv', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -364,7 +364,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -408,10 +408,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-csv`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv/2024.1.23) `manifold-csv-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-csv-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-csv-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-csv/pom.xml b/manifold-deps-parent/manifold-csv/pom.xml index 6a006716b..71db042d0 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-csv diff --git a/manifold-deps-parent/manifold-darkj-test/pom.xml b/manifold-deps-parent/manifold-darkj-test/pom.xml index 70ca2a6f1..2fc52a5e7 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-darkj-test diff --git a/manifold-deps-parent/manifold-darkj/README.md b/manifold-deps-parent/manifold-darkj/README.md index 15fc0a9d9..9a0628901 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.22' + implementation group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.23' 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.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-darkj', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -215,7 +215,7 @@ rootProject.name = 'MyDarkJavaProject' - 2024.1.22 + 2024.1.23 @@ -283,7 +283,7 @@ rootProject.name = 'MyDarkJavaProject' - 2024.1.22 + 2024.1.23 diff --git a/manifold-deps-parent/manifold-darkj/pom.xml b/manifold-deps-parent/manifold-darkj/pom.xml index 5a86ea2ca..f07af2be8 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-darkj diff --git a/manifold-deps-parent/manifold-delegation-rt/pom.xml b/manifold-deps-parent/manifold-delegation-rt/pom.xml index 2a0509fd6..c546c989f 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.22-SNAPSHOT + 2024.1.23-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 8a8a189d4..adbdd1f8f 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-delegation-test diff --git a/manifold-deps-parent/manifold-delegation/README.md b/manifold-deps-parent/manifold-delegation/README.md index dac1d8184..336351e65 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.22' + implementation 'systems.manifold:manifold-delegation-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-delegation:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-delegation:2024.1.22' + annotationProcessor 'systems.manifold:manifold-delegation:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-delegation:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -516,7 +516,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -560,10 +560,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-delegation`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation/2024.1.23) `manifold-delegation-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-delegation-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-delegation-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-delegation/pom.xml b/manifold-deps-parent/manifold-delegation/pom.xml index bfea36399..d788957af 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-delegation diff --git a/manifold-deps-parent/manifold-exceptions-test/pom.xml b/manifold-deps-parent/manifold-exceptions-test/pom.xml index d8f62ecf8..361e4ccd3 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-exceptions-test diff --git a/manifold-deps-parent/manifold-exceptions/README.md b/manifold-deps-parent/manifold-exceptions/README.md index f5e6e7104..87d0fe2f5 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.22' + compileOnly 'systems.manifold:manifold-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.22' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.23' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-exceptions', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -168,7 +168,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -214,7 +214,7 @@ rootProject.name = 'MyProject' # Javadoc `manifold-exceptions`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-exceptions/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-exceptions/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-exceptions/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-exceptions/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-exceptions/pom.xml b/manifold-deps-parent/manifold-exceptions/pom.xml index 321bdf163..386255655 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.22-SNAPSHOT + 2024.1.23-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 eada9084b..abcbb54b8 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.22-SNAPSHOT + 2024.1.23-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 c459ce95c..e3c801d59 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.22-SNAPSHOT + 2024.1.23-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 236eacd43..28e1ed00a 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.22-SNAPSHOT + 2024.1.23-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 f1f74202b..116daf913 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.22-SNAPSHOT + 2024.1.23-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 d1b73a673..df226575d 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-ext-test diff --git a/manifold-deps-parent/manifold-ext/README.md b/manifold-deps-parent/manifold-ext/README.md index 7981d30cc..d0805c375 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.22' + implementation 'systems.manifold:manifold-ext-rt:2024.1.23' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.22' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.23' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-ext', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -2145,7 +2145,7 @@ rootProject.name = 'MyExtProject' - 2024.1.22 + 2024.1.23 @@ -2195,10 +2195,10 @@ with javadoc. # Javadoc `manifold-ext`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext/2024.1.23) `manifold-ext-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-ext-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-ext-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-ext/pom.xml b/manifold-deps-parent/manifold-ext/pom.xml index eac6d1cce..a3cfb1d2b 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-ext diff --git a/manifold-deps-parent/manifold-graphql-rt/pom.xml b/manifold-deps-parent/manifold-graphql-rt/pom.xml index 2c89968ef..3ae88c3d3 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.22-SNAPSHOT + 2024.1.23-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 dffbbb020..6aa50b700 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-graphql-test diff --git a/manifold-deps-parent/manifold-graphql/README.md b/manifold-deps-parent/manifold-graphql/README.md index f50da7b7b..74e3af759 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.22' -> annotationProcessor 'systems.manifold:manifold-props:2024.1.22' +> implementation 'systems.manifold:manifold-props-rt:2024.1.23' +> annotationProcessor 'systems.manifold:manifold-props:2024.1.23' >``` > 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.22' + implementation 'systems.manifold:manifold-graphql-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-graphql:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-graphql:2024.1.22' + annotationProcessor 'systems.manifold:manifold-graphql:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-graphql:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -712,7 +712,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -756,10 +756,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-graphql`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql/2024.1.23) `manifold-graphql-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-graphql-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-graphql-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-graphql/pom.xml b/manifold-deps-parent/manifold-graphql/pom.xml index 8a0d9fea2..727d5c6f8 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-graphql diff --git a/manifold-deps-parent/manifold-highjump-test/pom.xml b/manifold-deps-parent/manifold-highjump-test/pom.xml index dc48f14e8..c8a407d42 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-highjump-test diff --git a/manifold-deps-parent/manifold-highjump/pom.xml b/manifold-deps-parent/manifold-highjump/pom.xml index 1d8c83854..a0f01c418 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-highjump diff --git a/manifold-deps-parent/manifold-image-test/pom.xml b/manifold-deps-parent/manifold-image-test/pom.xml index 551a23082..038e12d92 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-image-test diff --git a/manifold-deps-parent/manifold-image/README.md b/manifold-deps-parent/manifold-image/README.md index 20db0211c..81294e663 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.22' + compileOnly 'systems.manifold:manifold-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-image:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-image:2024.1.22' + annotationProcessor 'systems.manifold:manifold-image:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-image:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -157,7 +157,7 @@ module MyProject { - 2024.1.22 + 2024.1.23 @@ -211,7 +211,7 @@ module my.image.app { # Javadoc `manifold-image`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-image/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-image/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-image/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-image/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-image/pom.xml b/manifold-deps-parent/manifold-image/pom.xml index 95dcf8926..b34ccc2d3 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-image diff --git a/manifold-deps-parent/manifold-io-test/pom.xml b/manifold-deps-parent/manifold-io-test/pom.xml index 6090d8511..42ea5edd1 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-io-test diff --git a/manifold-deps-parent/manifold-io/pom.xml b/manifold-deps-parent/manifold-io/pom.xml index 9469fea92..4976f4cb3 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-io diff --git a/manifold-deps-parent/manifold-js-rt/pom.xml b/manifold-deps-parent/manifold-js-rt/pom.xml index ac8ea1a18..2b0618ebf 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.22-SNAPSHOT + 2024.1.23-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 f6e07739f..da332b458 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-js-test diff --git a/manifold-deps-parent/manifold-js/README.md b/manifold-deps-parent/manifold-js/README.md index c8267a317..d8d885399 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.22' + implementation 'systems.manifold:manifold-js-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-js:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-js:2024.1.22' + annotationProcessor 'systems.manifold:manifold-js:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-js:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -232,7 +232,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 diff --git a/manifold-deps-parent/manifold-js/pom.xml b/manifold-deps-parent/manifold-js/pom.xml index 019a15235..220376c8b 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-js diff --git a/manifold-deps-parent/manifold-json-rt/pom.xml b/manifold-deps-parent/manifold-json-rt/pom.xml index 6e502b12d..fd144063b 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.22-SNAPSHOT + 2024.1.23-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 3132c9dd4..8a3769199 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-json-test diff --git a/manifold-deps-parent/manifold-json/README.md b/manifold-deps-parent/manifold-json/README.md index e3851a6dd..7054eeef8 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.22' + implementation 'systems.manifold:manifold-json-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-json:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-json:2024.1.22' + annotationProcessor 'systems.manifold:manifold-json:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-json:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -617,7 +617,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -661,10 +661,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-json`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json/2024.1.23) `manifold-json-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-json-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-json-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-json/pom.xml b/manifold-deps-parent/manifold-json/pom.xml index 153267ea1..24eb82f22 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.22-SNAPSHOT + 2024.1.23-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 06cda967b..6ae2fbffb 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.22-SNAPSHOT + 2024.1.23-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 a5222b7ec..f237629d1 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-preprocessor-test diff --git a/manifold-deps-parent/manifold-preprocessor/pom.xml b/manifold-deps-parent/manifold-preprocessor/pom.xml index 1182cfa25..05ca9e25c 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-preprocessor diff --git a/manifold-deps-parent/manifold-preprocessor/readme.md b/manifold-deps-parent/manifold-preprocessor/readme.md index 9773911ec..8fddde9b8 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.22' - testAnnotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.22' + annotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-preprocessor:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -480,7 +480,7 @@ rootProject.name = 'MyPreprocessorProject' - 2024.1.22 + 2024.1.23 @@ -522,7 +522,7 @@ with javadoc. # Javadoc `manifold-preprocessor`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-preprocessor/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-preprocessor/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-preprocessor/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-preprocessor/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-properties-test/pom.xml b/manifold-deps-parent/manifold-properties-test/pom.xml index 6298b7095..112e3e06b 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-properties-test diff --git a/manifold-deps-parent/manifold-properties/README.md b/manifold-deps-parent/manifold-properties/README.md index e54af6853..811dab5e0 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.22' - compileOnly 'systems.manifold:manifold-rt:2024.1.22' + annotationProcessor 'systems.manifold:manifold-properties:2024.1.23' + compileOnly 'systems.manifold:manifold-rt:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -151,7 +151,7 @@ module MyProject { - 2024.1.22 + 2024.1.23 @@ -203,7 +203,7 @@ module my.properties.app { # Javadoc `manifold-properties`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-properties/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-properties/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-properties/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-properties/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-properties/pom.xml b/manifold-deps-parent/manifold-properties/pom.xml index 725ef93d7..cef3adbfb 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.22-SNAPSHOT + 2024.1.23-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 0aeb622eb..2fafada7a 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.22-SNAPSHOT + 2024.1.23-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 72aa714fe..85f860c25 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.22-SNAPSHOT + 2024.1.23-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 6d078a9d1..dfda68954 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-props-test diff --git a/manifold-deps-parent/manifold-props/README.md b/manifold-deps-parent/manifold-props/README.md index 9caa9ab50..bf10ce7d9 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.22' + implementation 'systems.manifold:manifold-props-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-props:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-props:2024.1.22' + annotationProcessor 'systems.manifold:manifold-props:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-props:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -506,7 +506,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -555,10 +555,10 @@ with javadoc. # Javadoc `manifold-props`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props/2024.1.23) `manifold-props-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-props-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-props-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-props/pom.xml b/manifold-deps-parent/manifold-props/pom.xml index b20177b88..01a5d3d4c 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-props diff --git a/manifold-deps-parent/manifold-science-test/pom.xml b/manifold-deps-parent/manifold-science-test/pom.xml index 97b346d3d..170ff4368 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-science-test diff --git a/manifold-deps-parent/manifold-science/README.md b/manifold-deps-parent/manifold-science/README.md index 5cf1547c5..36722eb2f 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.22' + implementation 'systems.manifold:manifold-science:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-ext:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-ext:2024.1.22' + annotationProcessor 'systems.manifold:manifold-ext:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-ext:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -370,7 +370,7 @@ rootProject.name = 'MyExtProject' - 2024.1.22 + 2024.1.23 @@ -414,7 +414,7 @@ rootProject.name = 'MyExtProject' # Javadoc `manifold-science`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-science/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-science/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-science/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-science/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-science/pom.xml b/manifold-deps-parent/manifold-science/pom.xml index c0095f0a5..6d15554df 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.22-SNAPSHOT + 2024.1.23-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 9b28fb333..a3257ca87 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.22-SNAPSHOT + 2024.1.23-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 ca07cbece..c4aa389b4 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.22-SNAPSHOT + 2024.1.23-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 d0fc9b33c..95c8743bd 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-sql-rt diff --git a/manifold-deps-parent/manifold-sql/pom.xml b/manifold-deps-parent/manifold-sql/pom.xml index d59ec00b4..34b380e60 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-sql diff --git a/manifold-deps-parent/manifold-sql/readme.md b/manifold-deps-parent/manifold-sql/readme.md index 1f8ed5cab..fab59813b 100644 --- a/manifold-deps-parent/manifold-sql/readme.md +++ b/manifold-deps-parent/manifold-sql/readme.md @@ -220,9 +220,9 @@ repositories { dependencies { // Manifold dependencies - implementation 'systems.manifold:manifold-sql-rt:2024.1.22' - annotationProcessor 'systems.manifold:manifold-sql:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-sql:2024.1.22' + implementation 'systems.manifold:manifold-sql-rt:2024.1.23' + annotationProcessor 'systems.manifold:manifold-sql:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-sql:2024.1.23' // Add your JDBC driver here, this is just an example using postgres implementation 'org.postgresql:postgresql:42.6.0' @@ -263,7 +263,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 11 @@ -1399,10 +1399,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.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql/2024.1.23) `manifold-sql-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-sql-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-sql-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-strings-test-excl/pom.xml b/manifold-deps-parent/manifold-strings-test-excl/pom.xml index 4870e69f2..ab65c6e2f 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.22-SNAPSHOT + 2024.1.23-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 86577af1d..8dd4fea4f 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-strings-test diff --git a/manifold-deps-parent/manifold-strings/README.md b/manifold-deps-parent/manifold-strings/README.md index 72a0b8a76..95733c25f 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.22' - testAnnotationProcessor 'systems.manifold:manifold-strings:2024.1.22' + annotationProcessor 'systems.manifold:manifold-strings:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-strings:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -210,7 +210,7 @@ module MyProject { - 2024.1.22 + 2024.1.23 diff --git a/manifold-deps-parent/manifold-strings/pom.xml b/manifold-deps-parent/manifold-strings/pom.xml index 9e57c0ca9..5783954cd 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-strings diff --git a/manifold-deps-parent/manifold-templates-rt/pom.xml b/manifold-deps-parent/manifold-templates-rt/pom.xml index fd62a483c..d81f2f2b0 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.22-SNAPSHOT + 2024.1.23-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 dde01bce2..dce91f101 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-templates-test diff --git a/manifold-deps-parent/manifold-templates/README.md b/manifold-deps-parent/manifold-templates/README.md index fa41602cf..d7eab3381 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.22' + implementation 'systems.manifold:manifold-templates-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-templates:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-templates:2024.1.22' + annotationProcessor 'systems.manifold:manifold-templates:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-templates:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -806,7 +806,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -850,10 +850,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-templates`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates/2024.1.23) `manifold-templates-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-templates-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-templates-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-templates/pom.xml b/manifold-deps-parent/manifold-templates/pom.xml index f0e11dc24..1fbf367eb 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-templates Manifold :: Templates diff --git a/manifold-deps-parent/manifold-test/pom.xml b/manifold-deps-parent/manifold-test/pom.xml index b7f869f87..5c78b2b1a 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-test diff --git a/manifold-deps-parent/manifold-text-test/pom.xml b/manifold-deps-parent/manifold-text-test/pom.xml index b70126fec..695ea26b6 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-text-test diff --git a/manifold-deps-parent/manifold-text/pom.xml b/manifold-deps-parent/manifold-text/pom.xml index 70116ccf3..ccf086a78 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-text diff --git a/manifold-deps-parent/manifold-tuple-rt/pom.xml b/manifold-deps-parent/manifold-tuple-rt/pom.xml index 8929f559f..db10ed0c0 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.22-SNAPSHOT + 2024.1.23-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 919159ac0..7c449c3bf 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-tuple-test diff --git a/manifold-deps-parent/manifold-tuple/README.md b/manifold-deps-parent/manifold-tuple/README.md index a44fe098c..1fdadb91d 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.22' + implementation 'systems.manifold:manifold-tuple-rt:2024.1.23' testCompile 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.22' - testAnnotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.22' + annotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.23' + testAnnotationProcessor group: 'systems.manifold', name: 'manifold-tuple', version: '2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -284,7 +284,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -328,10 +328,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-tuple`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple/2024.1.23) `manifold-tuple-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-tuple-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-tuple-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-tuple/pom.xml b/manifold-deps-parent/manifold-tuple/pom.xml index 38da97718..9a12322d6 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-tuple diff --git a/manifold-deps-parent/manifold-xml-rt/pom.xml b/manifold-deps-parent/manifold-xml-rt/pom.xml index 9aa3308fa..27f9f5350 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.22-SNAPSHOT + 2024.1.23-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 7be6212a3..1a20f28a1 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-xml-test diff --git a/manifold-deps-parent/manifold-xml/README.md b/manifold-deps-parent/manifold-xml/README.md index ab5c736ff..fbc10f55c 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.22' + implementation 'systems.manifold:manifold-xml-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-xml:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-xml:2024.1.22' + annotationProcessor 'systems.manifold:manifold-xml:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-xml:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -373,7 +373,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -417,10 +417,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-xml`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml/2024.1.23) `manifold-xml-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-xml-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-xml-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-xml/pom.xml b/manifold-deps-parent/manifold-xml/pom.xml index e5433a4dc..6a469fe67 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-xml diff --git a/manifold-deps-parent/manifold-yaml-rt/pom.xml b/manifold-deps-parent/manifold-yaml-rt/pom.xml index 3bf164977..01211606d 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.22-SNAPSHOT + 2024.1.23-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 068b31530..cc68aaac6 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-yaml-test diff --git a/manifold-deps-parent/manifold-yaml/README.md b/manifold-deps-parent/manifold-yaml/README.md index 7c4e591d6..b54b08741 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.22' + implementation 'systems.manifold:manifold-yaml-rt:2024.1.23' testImplementation 'junit:junit:4.12' // Add manifold to -processorpath for javac - annotationProcessor 'systems.manifold:manifold-yaml:2024.1.22' - testAnnotationProcessor 'systems.manifold:manifold-yaml:2024.1.22' + annotationProcessor 'systems.manifold:manifold-yaml:2024.1.23' + testAnnotationProcessor 'systems.manifold:manifold-yaml:2024.1.23' } if (JavaVersion.current() != JavaVersion.VERSION_1_8 && @@ -133,7 +133,7 @@ rootProject.name = 'MyProject' - 2024.1.22 + 2024.1.23 @@ -177,10 +177,10 @@ rootProject.name = 'MyProject' # Javadoc `manifold-yaml`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml/2024.1.23) `manifold-yaml-rt`:
-[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml-rt/2024.1.22/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml-rt/2024.1.22) +[![javadoc](https://javadoc.io/badge2/systems.manifold/manifold-yaml-rt/2024.1.23/javadoc.svg)](https://javadoc.io/doc/systems.manifold/manifold-yaml-rt/2024.1.23) # License diff --git a/manifold-deps-parent/manifold-yaml/pom.xml b/manifold-deps-parent/manifold-yaml/pom.xml index 6f22c0f84..04eef01a6 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.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-yaml diff --git a/manifold-deps-parent/pom.xml b/manifold-deps-parent/pom.xml index f093f4329..2d9d96db9 100644 --- a/manifold-deps-parent/pom.xml +++ b/manifold-deps-parent/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-deps-parent @@ -96,7 +96,7 @@ manifold-javadoc-agent provided true - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT
diff --git a/manifold-javadoc-agent/pom.xml b/manifold-javadoc-agent/pom.xml index c44799ee2..3e22a7c1e 100644 --- a/manifold-javadoc-agent/pom.xml +++ b/manifold-javadoc-agent/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-parent - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-javadoc-agent diff --git a/manifold-util/pom.xml b/manifold-util/pom.xml index e7caa36b9..d5904270f 100644 --- a/manifold-util/pom.xml +++ b/manifold-util/pom.xml @@ -5,7 +5,7 @@ systems.manifold manifold-parent - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT manifold-util diff --git a/pom.xml b/pom.xml index 381f8f61e..bc6f7b6a6 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ systems.manifold manifold-parent pom - 2024.1.22-SNAPSHOT + 2024.1.23-SNAPSHOT Manifold :: Parent