Skip to content

Commit

Permalink
Update version to 4.6.1 in README, build.gradle.kts, switcher.json, a…
Browse files Browse the repository at this point in the history
…nd CoreseInfo.java
  • Loading branch information
remiceres committed Dec 12, 2024
1 parent 1dd0253 commit 121d234
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add this dependency to your `pom.xml` file:
<dependency>
<groupId>fr.inria.corese</groupId>
<artifactId>corese-core</artifactId>
<version>4.6.0</version>
<version>4.6.1</version>
</dependency>
```

Expand All @@ -36,7 +36,7 @@ Add this dependency to your `pom.xml` file:
Include the following in your `build.gradle` file:

``` gradle
implementation 'fr.inria.corese:corese-core:4.6.0'
implementation 'fr.inria.corese:corese-core:4.6.1'
```

**JAR:**
Expand All @@ -45,10 +45,7 @@ You can download the latest version of the **Corese-Core** JAR from the [release

## Documentation

Explore the available documentation to help you get started with Corese-Core:

- [Getting Started Guide](https://corese-stack.github.io/corese-core/v4.6.0/getting_started/getting_started_with_corese-core.html)
- [API Documentation](https://corese-stack.github.io/corese-core/v4.6.0/java_api/library_root.html)
Explore the available documentation on Corese-Core pages: [Corese-Core Documentation](https://corese-stack.github.io/corese-core/).

## Contributions and Community

Expand All @@ -60,6 +57,5 @@ We value contributions and feedback from the community! Here’s how you can eng

## Useful Links

- [Corese Official Website](https://corese-stack.github.io/corese-core/v4.6.0/)
- **Mailing List:** <[email protected]>
- **Join the Mailing List:** Send an email to <[email protected]> with the subject: `subscribe`
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object Meta {
// Project coordinates
const val groupId = "fr.inria.corese"
const val artifactId = "corese-core"
const val version = "4.6.1-SNAPSHOT"
const val version = "4.6.1"

// Project description
const val desc = "Corese is a Semantic Web Factory (triple store and SPARQL endpoint) implementing RDF, RDFS, SPARQL 1.1 Query and Update, Shacl. STTL. LDScript."
Expand Down
10 changes: 8 additions & 2 deletions docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
[
{
"name": "v4.6.0 (latest)",
"name": "v4.6.1 (latest)",
"version": "stable",
"url": "https://corese-stack.github.io/corese-core/v4.6.0/",
"url": "https://corese-stack.github.io/corese-core/v4.6.1/",
"preferred": true
},
{
"name": "v4.6.0 (stable)",
"version": "stable",
"url": "https://corese-stack.github.io/corese-core/v4.6.0/",
"preferred": false
},
{
"name": "dev",
"version": "unstable",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fr/inria/corese/core/util/CoreseInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
public class CoreseInfo {

private static final String VERSION = "4.6.0";
private static final String VERSION = "4.6.1";

/**
* Retrieves the current version of the Corese application.
Expand Down

0 comments on commit 121d234

Please sign in to comment.