diff --git a/Cargo.toml b/Cargo.toml index 00c4e14..eb608db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ name = 'routing' [package] name = 'didcomm' -version = '0.3.1' +version = '0.3.2' authors = ['Vyacheslav Gudkov '] edition = '2018' description = 'DIDComm for Rust' diff --git a/Specs/didcomm-swift/0.3.1/didcomm-swift.podspec b/Specs/didcomm-swift/0.3.1/didcomm-swift.podspec new file mode 100644 index 0000000..8491fd2 --- /dev/null +++ b/Specs/didcomm-swift/0.3.1/didcomm-swift.podspec @@ -0,0 +1,20 @@ +require "json" + + +Pod::Spec.new do |s| + s.name = "didcomm-swift" + s.version = "0.3.1" + s.summary = "Swift wrapper for DIDComm messaging library" + s.description = "Swift wrapper for DIDComm messaging library" + s.homepage = "https://github.com/sicpa-dlab/didcomm-rust.git" + + s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' } + s.authors = { "Sicpa-Dlab" => "dlab@sicpa.com" } + s.platforms = { :ios => "10.0" } + s.source = { :http => 'https://github.com/sicpa-dlab/didcomm-rust/releases/download/v0.3.1/didcomm-swift-0.3.1.tar.gz' } + s.swift_version = '4.0' + + s.ios.vendored_library = 'didcomm-swift/*.a' + s.source_files = "didcomm-swift/*.{.h, swift}" + +end diff --git a/uniffi/Cargo.toml b/uniffi/Cargo.toml index 4663e3b..7738e6c 100644 --- a/uniffi/Cargo.toml +++ b/uniffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'didcomm-uniffi' -version = '0.2.0' +version = '0.3.2' authors = ['Vyacheslav Gudkov '] edition = '2018' description = 'FFI wrapper for DIDComm' diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index ad48d1f..79e1dd1 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'didcomm-js' -version = '0.3.1' +version = '0.3.2' authors = ['Vyacheslav Gudkov '] edition = '2018' description = 'WASM based javascript wrapper for DIDComm' diff --git a/wasm/demo/package.json b/wasm/demo/package.json index 47be55d..d3f96ad 100644 --- a/wasm/demo/package.json +++ b/wasm/demo/package.json @@ -1,6 +1,6 @@ { "name": "didcomm-demo", - "version": "0.2.0", + "version": "0.3.2", "description": "JS demo for didcomm", "scripts": { "start": "ts-node src/main.ts", diff --git a/wasm/src/did/did_doc.rs b/wasm/src/did/did_doc.rs index dd0e82e..8d32797 100644 --- a/wasm/src/did/did_doc.rs +++ b/wasm/src/did/did_doc.rs @@ -108,6 +108,6 @@ const DIDCOMM_MESSAGING_SERVICE_TS: &'static str = r#" type DIDCommMessagingService = { service_endpoint: string, accept: Array, - route_keys: Array, + routing_keys: Array, } "#; diff --git a/wasm/tests-js/package.json b/wasm/tests-js/package.json index d623942..86030ff 100644 --- a/wasm/tests-js/package.json +++ b/wasm/tests-js/package.json @@ -1,6 +1,6 @@ { "name": "didcomm-tests", - "version": "0.2.0", + "version": "0.3.2", "description": "JS tests for didcomm", "scripts": { "test": "jest",