Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ build on Apache UIMA and that provide collections of analysis components or read

#### System requirements

Apache UIMA v3.6.0 and later requires Java version 17 or later.
Apache UIMA v3.6.1 and later requires Java version 17 or later.

Running the Eclipse plugin tooling for UIMA requires you start Eclipse 4.25 (2022-09) or later using a Java 17 or later.

Expand All @@ -44,7 +44,7 @@ to your project:
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
</dependency>
```

Expand All @@ -55,7 +55,7 @@ Apache uimaFIT is a separate dependency that you can add:
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
</dependency>
```

Expand Down Expand Up @@ -232,7 +232,7 @@ following:
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
</dependency>
</dependencies>

Expand Down
30 changes: 8 additions & 22 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
***************************************************************
-->

# Apache UIMA (Unstructured Information Management Architecture) v3.6.0 Release Notes
# Apache UIMA (Unstructured Information Management Architecture) v3.6.1 Release Notes

## Contents

Expand Down Expand Up @@ -63,27 +63,13 @@ This is a feature and bug fix release.


## What's Changed
* ⭐️ Issue #372: Allow adding URLs to the datapath
* ⭐️ Issue #348: Varargs for description class setters
* ⭐️ Issue #369: Move isTypeName and isFeatureName to public API
* ⭐️ Issue #402: Provide bnd plugin to generate package imports based on imports in UIMA descriptors
* ⭐️ Issue #382: Warning when PEAR contains a JCAS class that is used as a feature range outside the PEAR
* ⭐️ Issue #385: Allow import of type systems published through SPI
* ⭐️ Issue #387: Simplify creation of new UIMAContext
* ⭐️ Issue #390: Merge uimaFIT modules into UIMA-J repository
* ⭐️ Issue #393: Include uimaFIT artifacts in binary distribution
* 🦟 Issue #368: select(AnnotationBaseFs-type).count() seems to return MAX_LONG
* 🦟 Issue #371: Repeated creation of type systems can exhaust JVM metaspace
* 🦟 Issue #395: Potential failure to look up UIMA-internal classes in OSGI-like contexts
* ⚙️ Issue #379: Clean up code
* ⚙️ Issue #398: Mark Maven plugins as thread-safe
* ⚙️ Issue #404: Remove toolchains
* ⚙️ Issue #407: Clean up PearPackagingMavenPlugin
* ⚙️ Issue #409: Update dependencies
* ⚙️ Issue #417: BOM should not inherit build setup from parent POM


**Full Changelog**: https://github.com/apache/uima-uimaj/compare/rel/uimaj-3.5.1...uimaj-3.6.0

* 🦟 Issue #431: Issue using SPI-enabled type systems embedded into PEARs
* 🦟 Issue #430: Resolving type system imports through SPI is slows things down too much
* 🦟 Issue #435: Improve performance of import resolver
* ⚙️ Issue #438: Upgrade dependencies (3.6.1)

**Full Changelog**: https://github.com/apache/uima-uimaj/compare/rel/uimaj-3.6.0...uimaj-3.6.1


## <a id="get.involved">How to Get Involved</a>
Expand Down
2 changes: 1 addition & 1 deletion uimaj-examples/src/main/eclipseProject/classpath
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

<classpathentry kind="var" path="UIMA_HOME/lib/uima-adapter-vinci.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/jVinci.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/jackson-core-2.18.1.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/jackson-core-2.20.0.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/uimaj-v3migration-jcas.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/procyon-compilertools-0.5.32.jar"/>
<classpathentry kind="var" path="UIMA_HOME/lib/procyon-core-0.5.32.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion uimaj-parent-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@

<!-- BEGIN PROFILE SETTINGS: generate-release-notes-->
<github-repository>uima-uimaj</github-repository>
<git-branch>main</git-branch>
<git-branch>release/3.6.x</git-branch>
<previous-release-version>3.6.0</previous-release-version>
<!-- END PROFILE SETTINGS: generate-release-notes-->

Expand Down
Loading