Skip to content

Commit b2a8ac6

Browse files
committed
Prepare for release
Signed-off-by: Pascal Christoph <pascal.christoph@web.de>
1 parent 506d761 commit b2a8ac6

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ From Maven
1616
<dependency>
1717
<groupId>com.github.jsonld-java</groupId>
1818
<artifactId>jsonld-java</artifactId>
19-
<version>0.13.2</version>
19+
<version>0.13.3</version>
2020
</dependency>
2121

2222
Code example
@@ -323,11 +323,11 @@ Here is the basic outline for what your module's pom.xml should look like
323323
<parent>
324324
<groupId>com.github.jsonld-java</groupId>
325325
<artifactId>jsonld-java-parent</artifactId>
326-
<version>0.13.2</version>
326+
<version>0.13.3</version>
327327
</parent>
328328
<modelVersion>4.0.0</modelVersion>
329329
<artifactId>jsonld-java-{your module}</artifactId>
330-
<version>0.13.2-SNAPSHOT</version>
330+
<version>0.13.3-SNAPSHOT</version>
331331
<name>JSONLD Java :: {your module name}</name>
332332
<description>JSON-LD Java integration module for {RDF Library your module integrates}</description>
333333
<packaging>jar</packaging>
@@ -449,6 +449,11 @@ Alternatively, we can also host your repository in the jsonld-java organisation
449449

450450
CHANGELOG
451451
=========
452+
### 2021-03-06
453+
* Release 0.13.3
454+
* Fix @type when subject and object are the same (Reported by @barthanssens, Patch by @umbreak)
455+
* Ignore @base if remote context is not relative (Reported by @whikloj, Patch by @dr0i)
456+
* Fix throwing recursive context inclusion (Patch by @umbreak)
452457

453458
### 2020-09-24
454459
* Release 0.13.2

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4040
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4141

42-
<httpclient.version>4.5.12</httpclient.version>
43-
<httpcore.version>4.4.13</httpcore.version>
44-
<jackson.version>2.11.2</jackson.version>
45-
<junit.version>4.13</junit.version>
42+
<httpclient.version>4.5.13</httpclient.version>
43+
<httpcore.version>4.4.14</httpcore.version>
44+
<jackson.version>2.11.4</jackson.version>
45+
<junit.version>4.13.2</junit.version>
4646
<slf4j.version>1.7.30</slf4j.version>
4747

4848
<last-compare-version>0.11.0</last-compare-version>
@@ -351,7 +351,7 @@
351351
<plugin>
352352
<groupId>org.apache.maven.plugins</groupId>
353353
<artifactId>maven-source-plugin</artifactId>
354-
<version>3.2.0</version>
354+
<version>3.2.1</version>
355355
<executions>
356356
<execution>
357357
<id>attach-source</id>
@@ -401,7 +401,7 @@
401401
<plugin>
402402
<groupId>com.github.siom79.japicmp</groupId>
403403
<artifactId>japicmp-maven-plugin</artifactId>
404-
<version>0.14.2</version>
404+
<version>0.14.4</version>
405405
<configuration>
406406
<oldVersion>
407407
<dependency>
@@ -448,7 +448,7 @@
448448
<plugin>
449449
<groupId>org.jacoco</groupId>
450450
<artifactId>jacoco-maven-plugin</artifactId>
451-
<version>0.8.5</version>
451+
<version>0.8.6</version>
452452
<executions>
453453
<execution>
454454
<id>prepare-agent</id>

0 commit comments

Comments
 (0)