[Git][java-team/libeuclid-java][upstream] New upstream version 2.6
Andrius Merkys (@merkys)
gitlab at salsa.debian.org
Mon Aug 28 14:14:49 BST 2023
Andrius Merkys pushed to branch upstream at Debian Java Maintainers / libeuclid-java
Commits:
482d248e by Andrius Merkys at 2023-08-28T04:20:20-04:00
New upstream version 2.6
- - - - -
4 changed files:
- .github/workflows/maven.yml
- CITATION.cff
- README.md
- pom.xml
Changes:
=====================================
.github/workflows/maven.yml
=====================================
@@ -22,3 +22,5 @@ jobs:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true
+ - name: Upload coverage reports to Codecov
+ uses: codecov/codecov-action at v3
=====================================
CITATION.cff
=====================================
@@ -1,8 +1,8 @@
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
title: Euclid
-version: 2.5
-date-released: 2023-04-08
+version: 2.6
+date-released: 2023-08-26
url: "https://github.com/BlueObelisk/euclid"
preferred-citation:
type: article
=====================================
README.md
=====================================
@@ -2,6 +2,7 @@
[](https://maven-badges.herokuapp.com/maven-central/org.blueobelisk/euclid)
[](https://github.com/BlueObelisk/euclid/actions/workflows/maven.yml)
[](https://doi.org/10.5281/zenodo.5815148)
+[](https://codecov.io/gh/BlueObelisk/euclid)
A library of numeric, geometric and XML routines
@@ -16,7 +17,7 @@ It's used a lot in CML tools (JUMBO, JUMBO-converters) and also AMI (for extract
Instructions to increase the version:
```shell
-mvn versions:set -DnewVersion=2.6-SNAPSHOT
+mvn versions:set -DnewVersion=2.7-SNAPSHOT
```
Deploy to Sonatype with the following commands, for snapshots and releases respectively:
=====================================
pom.xml
=====================================
@@ -3,7 +3,7 @@
<groupId>org.blueobelisk</groupId>
<artifactId>euclid</artifactId>
- <version>2.5</version>
+ <version>2.6</version>
<packaging>jar</packaging>
<properties>
@@ -200,6 +200,25 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.8.8</version>
+ <executions>
+ <execution>
+ <id>start-agent</id>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-report</id>
+ <goals>
+ <goal>report</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
@@ -224,7 +243,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
- <version>2.11.0</version>
+ <version>2.13.0</version>
</dependency>
<dependency>
@@ -247,7 +266,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
- <version>3.12.0</version>
+ <version>3.13.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
@@ -264,16 +283,12 @@
<dependency>
<groupId>xom</groupId>
<artifactId>xom</artifactId>
- <version>1.3.8</version>
+ <version>1.3.9</version>
<exclusions>
<exclusion>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
</exclusion>
- <exclusion>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- </exclusion>
</exclusions>
</dependency>
View it on GitLab: https://salsa.debian.org/java-team/libeuclid-java/-/commit/482d248e8f43049160caf45065c442fedfb3900a
--
View it on GitLab: https://salsa.debian.org/java-team/libeuclid-java/-/commit/482d248e8f43049160caf45065c442fedfb3900a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20230828/b7d61c6e/attachment.htm>
More information about the pkg-java-commits
mailing list