Skip to content

Commit 6992912

Browse files
committed
Merge tag 'v4.6.1' into develop
Release v4.6.1
2 parents 4274fd9 + 415ec06 commit 6992912

9 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- markdownlint-disable MD024 -->
22
# Corese Changelog
33

4-
## Version 4.6.1 –
4+
## Version 4.6.1 – 2025-06-17
55

66
### Added
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ corese query-endpoint -q 'SELECT * WHERE {?s ?p ?o}' -e "https://dbpedia.org/spa
9191

9292
## 📖 Documentation
9393

94-
- [Getting Started Guide](https://corese-stack.github.io/corese-command/v4.6.0/user_guide.html)
94+
- [Getting Started Guide](https://corese-stack.github.io/corese-command/v4.6.1/user_guide.html)
9595

9696
## 🤝 Contributing
9797

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ object Meta {
2222
// Project coordinates
2323
const val groupId = "fr.inria.corese"
2424
const val artifactId = "corese-command"
25-
const val version = "4.6.1-SNAPSHOT"
25+
const val version = "4.6.1"
2626

2727
// Project description
2828
const val desc = "A command-line tool for converting, querying, and validating RDF data with SPARQL and SHACL using the Corese engine."
489 KB
Loading
316 KB
Loading
942 KB
Loading
444 KB
Loading

packaging/flatpak/appdata/fr.inria.corese.CoreseCommand.appdata.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,20 @@
136136
</screenshots>
137137

138138
<releases>
139+
<release version="4.6.1" date="2025-06-17">
140+
<url type="details">https://github.com/corese-stack/corese-command/releases/tag/v4.6.1</url>
141+
<description>
142+
<ul>
143+
<li>Renamed `query-remote` command to `query-endpoint`.</li>
144+
<li>Fixed bug detecting one-line inline SPARQL queries with slashes/dots as file
145+
paths.</li>
146+
147+
<li xml:lang="fr">Renommage de la commande `query-remote` en `query-endpoint`.</li>
148+
<li xml:lang="fr">Correction d'un bug où les requêtes SPARQL en ligne contenant
149+
des URI étaient mal interprétées comme chemins de fichiers.</li>
150+
</ul>
151+
</description>
152+
</release>
139153
<release version="4.6.0" date="2025-04-11">
140154
<url type="details">https://github.com/corese-stack/corese-command/releases/tag/v4.6.0</url>
141155
<description>

src/main/java/fr/inria/corese/command/VersionProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class VersionProvider implements CommandLine.IVersionProvider {
1010

1111
// Version of Corese-Command
12-
public final static String commandVersion = "4.6.1-SNAPSHOT";
12+
public final static String commandVersion = "4.6.1";
1313

1414
@Override
1515
public String[] getVersion() {

0 commit comments

Comments
 (0)