Skip to content

Commit 75bc98f

Browse files
author
CID Agent
committed
Release 0.0.4
1 parent 684d269 commit 75bc98f

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
]
1111

1212
[workspace.package]
13-
version = "0.0.3"
13+
version = "0.0.4"
1414
edition = "2024"
1515
rust-version = "1.85"
1616
authors = ["Titusz Pan <tp@py7.de>"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ npm install @iscc/lib
9898
<dependency>
9999
<groupId>io.iscc</groupId>
100100
<artifactId>iscc-lib</artifactId>
101-
<version>0.0.3</version>
101+
<version>0.0.4</version>
102102
</dependency>
103103
```
104104

crates/iscc-jni/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ to create a composite identifier that exhibits similarity-preserving properties
2222
<dependency>
2323
<groupId>io.iscc</groupId>
2424
<artifactId>iscc-lib</artifactId>
25-
<version>0.0.3</version>
25+
<version>0.0.4</version>
2626
</dependency>
2727
```
2828

crates/iscc-jni/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.iscc</groupId>
88
<artifactId>iscc-lib</artifactId>
9-
<version>0.0.3</version>
9+
<version>0.0.4</version>
1010
<packaging>jar</packaging>
1111

1212
<name>iscc-lib</name>

crates/iscc-napi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iscc/lib",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"license": "Apache-2.0",
55
"repository": {
66
"type": "git",

docs/howto/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the Maven dependency to your `pom.xml`:
2020
<dependency>
2121
<groupId>io.iscc</groupId>
2222
<artifactId>iscc-lib</artifactId>
23-
<version>0.0.3</version>
23+
<version>0.0.4</version>
2424
</dependency>
2525
```
2626

docs/java-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ static methods on the `IsccLib` class. The native library is loaded automaticall
1717
<dependency>
1818
<groupId>io.iscc</groupId>
1919
<artifactId>iscc-lib</artifactId>
20-
<version>0.0.3</version>
20+
<version>0.0.4</version>
2121
</dependency>
2222
```
2323

2424
=== "Gradle"
2525

2626
```groovy
27-
implementation 'io.iscc:iscc-lib:0.0.3'
27+
implementation 'io.iscc:iscc-lib:0.0.4'
2828
```
2929

3030
## Quick Example

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ uv run pytest
7676

7777
[tasks."test:install"]
7878
description = "Test published packages are installable from registries"
79-
run = "uv run scripts/test_install.py {{arg(name='flags', i=0, default='--version 0.0.3')}}"
79+
run = "uv run scripts/test_install.py {{arg(name='flags', i=0, default='--version 0.0.4')}}"
8080

8181
# --- Version ---
8282

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "iscc-lib"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
requires-python = ">=3.10"
55
dependencies = []
66

0 commit comments

Comments
 (0)