Skip to content

Commit f83856c

Browse files
committed
v3.6.7 patch
1 parent f7dcb8c commit f83856c

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

Core/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.opensextant</groupId>
77
<artifactId>opensextant-xponents-core</artifactId>
8-
<version>3.6.7-SNAPSHOT</version>
8+
<version>3.6.7</version>
99
<packaging>jar</packaging>
1010
<name>OpenSextant Xponents Core API</name>
1111
<description>An information extraction toolkit focused on geography and temporal entities</description>
@@ -254,10 +254,10 @@
254254
<groupId>org.apache.maven.plugins</groupId>
255255
<artifactId>maven-compiler-plugin</artifactId>
256256
<configuration>
257-
<source>1.8</source>
258-
<target>1.8</target>
257+
<source>11</source>
258+
<target>11</target>
259259
<encoding>UTF-8</encoding>
260-
<compilerVersion>1.8</compilerVersion>
260+
<compilerVersion>11</compilerVersion>
261261
<compilerArgument>-Xlint:all,-path</compilerArgument>
262262
<showWarnings>true</showWarnings>
263263
<showDeprecation>true</showDeprecation>

Examples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<properties>
1414
<checkstyle.skip>true</checkstyle.skip>
1515
<slf4j.version>2.0.9</slf4j.version>
16-
<xponents.version>3.6.6</xponents.version>
17-
<xponents-core.version>3.6.6</xponents-core.version>
16+
<xponents.version>3.6.7</xponents.version>
17+
<xponents-core.version>3.6.7</xponents-core.version>
1818
<xtext.version>3.6.6</xtext.version>
1919
</properties>
2020
<dependencies>

RELEASE.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
RELEASES
22
==============
33

4+
# 2024
5+
6+
**Xponents 3.6.7**: Springy
7+
* **Core API**
8+
* Building up `TextInput` class to carry better metrics to enable filters and language-specific tuning.
9+
10+
* PlaceGeocoder tuning:
11+
* Refined tagging and filtering of CJK texts using mostly length and punctuation filters; Non-trival names
12+
and phrases will likely be grams of 3 or more characters and have no interceding space or punct.
13+
414
# 2023
515

616
**Xponents 3.6.6**: New Year Release

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.opensextant</groupId>
77
<artifactId>opensextant-xponents</artifactId>
8-
<version>3.6.7-SNAPSHOT</version>
8+
<version>3.6.7</version>
99
<packaging>jar</packaging>
1010
<name>OpenSextant Xponents</name>
1111
<description>An information extraction toolkit focused on geography and temporal entities</description>
@@ -53,7 +53,7 @@
5353
<slf4j.version>2.0.9</slf4j.version>
5454
<log4j.version>2.22.1</log4j.version>
5555
<restlet.version>2.4.3</restlet.version>
56-
<xponents.version>3.6.7-SNAPSHOT</xponents.version>
56+
<xponents.version>3.6.7</xponents.version>
5757
</properties>
5858
<!-- OSS Sonatype instructions: list repositories -->
5959
<distributionManagement>
@@ -481,10 +481,10 @@
481481
<groupId>org.apache.maven.plugins</groupId>
482482
<artifactId>maven-compiler-plugin</artifactId>
483483
<configuration>
484-
<source>1.11</source>
485-
<target>1.11</target>
484+
<source>11</source>
485+
<target>11</target>
486486
<encoding>UTF-8</encoding>
487-
<compilerVersion>1.11</compilerVersion>
487+
<compilerVersion>11</compilerVersion>
488488
<compilerArgument>-Xlint:all,-path</compilerArgument>
489489
<showWarnings>true</showWarnings>
490490
<showDeprecation>true</showDeprecation>

0 commit comments

Comments
 (0)