Skip to content

Commit 4f87ac2

Browse files
committed
Bump version to 2.0.0-M2
1 parent 29cd4a8 commit 4f87ac2

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
An implementation of the [JSON-LD 1.1](https://www.w3.org/TR/json-ld/) (JSON-based Serialization for Linked Data) specification in Java.
44

5-
### 🎯 Goals
6-
- Full conformance to the specification
7-
- Secure, stable, fast, high-quality code (**~3000 tests**)
8-
- Minimal external dependencies
9-
- Simple and easy-to-use
5+
### ✨ Features
106

11-
### 🚦 Status
7+
- Full conformance with the JSON-LD 1.1 specification
8+
- Secure, stable, high-performance implementation with ~3000 tests
9+
- Minimal external dependencies
10+
- Simple, easy-to-use API
11+
- Extensions (since v2.0):
12+
- JSON-LD-star expansion (experimental)
13+
- Processing policies: undefined terms, time/space constraints
14+
- Generated TypeMap / TermMap (experimental)
15+
- Built-in loaders: HTTPS, file, classpath, scheme router, URI rewriter
16+
- Generalized processing with [tree-io](https://github.com/filip26/tree-io) (Jakarta JSON, Jackson, or anything else)
17+
18+
### 🎯 Status
1219

1320
[![Java 17 CI](https://github.com/filip26/titanium-json-ld/actions/workflows/java17-build.yml/badge.svg)](https://github.com/filip26/titanium-json-ld/actions/workflows/java17-build.yml)
1421
[![CodeQL](https://github.com/filip26/titanium-json-ld/actions/workflows/codeql.yml/badge.svg)](https://github.com/filip26/titanium-json-ld/actions/workflows/codeql.yml)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.apicatalog</groupId>
7-
<version>2.0.0-M2-SNAPSHOT</version>
7+
<version>2.0.0-M2</version>
88
<artifactId>titanium-json-ld</artifactId>
99
<packaging>jar</packaging>
1010

src/main/java/com/apicatalog/jsonld/lang/Keywords.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import java.util.List;
2020

2121
/**
22-
* @see https://www.w3.org/TR/json-ld11/#keywords
22+
* @see <a href="https://www.w3.org/TR/json-ld11/#keywords">JSON-LD Keywords</a>
2323
*/
2424
public final class Keywords {
2525

0 commit comments

Comments
 (0)