Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
eike-hass committed Nov 2, 2023
1 parent d53a154 commit 307cf6b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you want to include IOTA Identity in your project, simply add it as a depende

```toml
[dependencies]
identity_iota = { version = "1.0.0-rc" }
identity_iota = { version = "1.0.0" }
```

To try out the [examples](https://github.com/iotaledger/identity.rs/blob/HEAD/examples), you can also do this:
Expand All @@ -74,7 +74,7 @@ version = "1.0.0"
edition = "2021"

[dependencies]
identity_iota = { version = "1.0.0-rc" }
identity_iota = { version = "1.0.0" }
iota-sdk = { version = "1.0.2", default-features = true, features = ["tls", "client", "stronghold"] }
tokio = { version = "1", features = ["full"] }
```
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"]
async-trait = { version = "0.1", default-features = false }
console_error_panic_hook = { version = "0.1" }
futures = { version = "0.3" }
identity_eddsa_verifier = { version = "1.0.0-rc.1", path = "../../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
identity_eddsa_verifier = { version = "1.0.0", path = "../../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
js-sys = { version = "0.3.61" }
proc_typescript = { version = "0.1.0", path = "./proc_typescript" }
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions bindings/wasm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IOTA Identity WASM

> This is the 1.0 release candidate (rc) version of the official WASM bindings for [IOTA Identity](https://github.com/iotaledger/identity.rs).
> This is the 1.0 version of the official WASM bindings for [IOTA Identity](https://github.com/iotaledger/identity.rs).
## [API Reference](https://wiki.iota.org/identity.rs/libraries/wasm/api_reference)

Expand All @@ -11,7 +11,7 @@
Latest Release: this version matches the `main` branch of this repository.

```bash
npm install @iota/identity-wasm@rc
npm install @iota/identity-wasm
```

## Build
Expand Down
38 changes: 19 additions & 19 deletions bindings/wasm/docs/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ working with storage backed DID documents.</p>
## Members

<dl>
<dt><a href="#StateMetadataEncoding">StateMetadataEncoding</a></dt>
<dd></dd>
<dt><a href="#MethodRelationship">MethodRelationship</a></dt>
<dd></dd>
<dt><a href="#StatusCheck">StatusCheck</a></dt>
<dd><p>Controls validation behaviour when checking whether or not a credential has been revoked by its
<a href="https://www.w3.org/TR/vc-data-model/#status"><code>credentialStatus</code></a>.</p>
Expand Down Expand Up @@ -189,15 +193,14 @@ This variant is the default.</p>
<dt><a href="#FirstError">FirstError</a></dt>
<dd><p>Return after the first error occurs.</p>
</dd>
<dt><a href="#StateMetadataEncoding">StateMetadataEncoding</a></dt>
<dd></dd>
<dt><a href="#MethodRelationship">MethodRelationship</a></dt>
<dd></dd>
</dl>

## Functions

<dl>
<dt><a href="#start">start()</a></dt>
<dd><p>Initializes the console error panic hook for better error messages</p>
</dd>
<dt><a href="#encodeB64">encodeB64(data)</a> ⇒ <code>string</code></dt>
<dd><p>Encode the given bytes in url-safe base64.</p>
</dd>
Expand All @@ -212,9 +215,6 @@ This variant is the default.</p>
<p>This function does not check whether <code>alg = EdDSA</code> in the protected header. Callers are expected to assert this
prior to calling the function.</p>
</dd>
<dt><a href="#start">start()</a></dt>
<dd><p>Initializes the console error panic hook for better error messages</p>
</dd>
</dl>

<a name="CoreDID"></a>
Expand Down Expand Up @@ -5041,6 +5041,14 @@ Deserializes an instance from a JSON object.
| --- | --- |
| json | <code>any</code> |

<a name="StateMetadataEncoding"></a>

## StateMetadataEncoding
**Kind**: global variable
<a name="MethodRelationship"></a>

## MethodRelationship
**Kind**: global variable
<a name="StatusCheck"></a>

## StatusCheck
Expand Down Expand Up @@ -5117,14 +5125,12 @@ Return all errors that occur during validation.
Return after the first error occurs.

**Kind**: global variable
<a name="StateMetadataEncoding"></a>
<a name="start"></a>

## StateMetadataEncoding
**Kind**: global variable
<a name="MethodRelationship"></a>
## start()
Initializes the console error panic hook for better error messages

## MethodRelationship
**Kind**: global variable
**Kind**: global function
<a name="encodeB64"></a>

## encodeB64(data) ⇒ <code>string</code>
Expand Down Expand Up @@ -5169,9 +5175,3 @@ prior to calling the function.
| decodedSignature | <code>Uint8Array</code> |
| publicKey | [<code>Jwk</code>](#Jwk) |

<a name="start"></a>

## start()
Initializes the console error panic hook for better error messages

**Kind**: global function
4 changes: 2 additions & 2 deletions identity_iota/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you want to include IOTA Identity in your project, simply add it as a depende

```toml
[dependencies]
identity_iota = { version = "1.0.0-rc" }
identity_iota = { version = "1.0.0" }
```

To try out the [examples](https://github.com/iotaledger/identity.rs/blob/HEAD/examples), you can also do this:
Expand All @@ -74,7 +74,7 @@ version = "1.0.0"
edition = "2021"

[dependencies]
identity_iota = { version = "1.0.0-rc" }
identity_iota = { version = "1.0.0" }
iota-sdk = { version = "1.0.2", default-features = true, features = ["tls", "client", "stronghold"] }
tokio = { version = "1", features = ["full"] }
```
Expand Down

0 comments on commit 307cf6b

Please sign in to comment.