Skip to content

Commit

Permalink
v3.6.7 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
mubaldino committed Mar 5, 2024
1 parent f7dcb8c commit f83856c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.opensextant</groupId>
<artifactId>opensextant-xponents-core</artifactId>
<version>3.6.7-SNAPSHOT</version>
<version>3.6.7</version>
<packaging>jar</packaging>
<name>OpenSextant Xponents Core API</name>
<description>An information extraction toolkit focused on geography and temporal entities</description>
Expand Down Expand Up @@ -254,10 +254,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
<compilerVersion>1.8</compilerVersion>
<compilerVersion>11</compilerVersion>
<compilerArgument>-Xlint:all,-path</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
Expand Down
4 changes: 2 additions & 2 deletions Examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<properties>
<checkstyle.skip>true</checkstyle.skip>
<slf4j.version>2.0.9</slf4j.version>
<xponents.version>3.6.6</xponents.version>
<xponents-core.version>3.6.6</xponents-core.version>
<xponents.version>3.6.7</xponents.version>
<xponents-core.version>3.6.7</xponents-core.version>
<xtext.version>3.6.6</xtext.version>
</properties>
<dependencies>
Expand Down
10 changes: 10 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
RELEASES
==============

# 2024

**Xponents 3.6.7**: Springy
* **Core API**
* Building up `TextInput` class to carry better metrics to enable filters and language-specific tuning.

* PlaceGeocoder tuning:
* Refined tagging and filtering of CJK texts using mostly length and punctuation filters; Non-trival names
and phrases will likely be grams of 3 or more characters and have no interceding space or punct.

# 2023

**Xponents 3.6.6**: New Year Release
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.opensextant</groupId>
<artifactId>opensextant-xponents</artifactId>
<version>3.6.7-SNAPSHOT</version>
<version>3.6.7</version>
<packaging>jar</packaging>
<name>OpenSextant Xponents</name>
<description>An information extraction toolkit focused on geography and temporal entities</description>
Expand Down Expand Up @@ -53,7 +53,7 @@
<slf4j.version>2.0.9</slf4j.version>
<log4j.version>2.22.1</log4j.version>
<restlet.version>2.4.3</restlet.version>
<xponents.version>3.6.7-SNAPSHOT</xponents.version>
<xponents.version>3.6.7</xponents.version>
</properties>
<!-- OSS Sonatype instructions: list repositories -->
<distributionManagement>
Expand Down Expand Up @@ -481,10 +481,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.11</source>
<target>1.11</target>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
<compilerVersion>1.11</compilerVersion>
<compilerVersion>11</compilerVersion>
<compilerArgument>-Xlint:all,-path</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
Expand Down

0 comments on commit f83856c

Please sign in to comment.