Skip to content

Commit b765c7c

Browse files
committed
update for 0.0.36
1 parent 01c2c33 commit b765c7c

20 files changed

Lines changed: 23 additions & 23 deletions

Cargo.lock

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: clean build build-all package package-all publish publish-all
22
# Variables
3-
VERSION = 0.0.35
3+
VERSION = 0.0.36
44
NUGET_API_KEY ?= $(NUGET_API_KEY)
55
PS_API_KEY := $(PS_API_KEY)
66
MAVEN_AUTH := $(shell echo "$(MAVEN_USERNAME):$(MAVEN_PASSWORD)" | base64)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ node test.js
4747
python
4848
```bash
4949
cd python
50-
pip uninstall openiap -y && pip install dist/openiap-0.0.35-py3-none-any.whl && python test.py
50+
pip uninstall openiap -y && pip install dist/openiap-0.0.36-py3-none-any.whl && python test.py
5151

5252
```
5353
dotnet

c/conanfile.py

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

55
class OpenIAPConan(ConanFile):
66
name = "openiap"
7-
version = "0.0.35"
7+
version = "0.0.36"
88
license = "MPL-2.0"
99
url = "https://github.com/openiap/rustapi"
1010
homepage = "https://openiap.io"

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "openiap"
33
description = "openiap test client"
44
license = "MPL-2.0"
5-
version = "0.0.35"
5+
version = "0.0.36"
66
edition = "2021"
77

88
[dependencies]

crates/clib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "openiap-clib"
33
description = "openiap client c library for SDK wrappers"
44
license = "MPL-2.0"
5-
version = "0.0.35"
5+
version = "0.0.36"
66
edition = "2021"
77

88
[lib]

crates/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "openiap-client"
33
description = "openiap client library"
44
license = "MPL-2.0"
5-
version = "0.0.35"
5+
version = "0.0.36"
66
edition = "2021"
77

88
[dependencies]

crates/client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ type StreamSender = mpsc::Sender<Vec<u8>>;
5959
type Sock = WebSocketStream<tokio_tungstenite::MaybeTlsStream<tokio::net::TcpStream>>;
6060
use futures::StreamExt;
6161
use async_channel::unbounded;
62-
const VERSION: &str = "0.0.35";
62+
const VERSION: &str = "0.0.36";
6363

6464

6565
/// The `Client` struct provides the client for the OpenIAP service.

crates/proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "openiap-proto"
33
description = "compiled protos for openiap"
44
license = "MPL-2.0"
5-
version = "0.0.35"
5+
version = "0.0.36"
66
edition = "2021"
77

88
[dependencies]

dotnet/openiap-slim.csproj

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

33
<PropertyGroup>
44
<PackageId>openiap-slim</PackageId>
5-
<version>0.0.35</version>
5+
<version>0.0.36</version>
66
<title>OpenIAP API Wrapper</title>
77
<authors>OpenIAP ApS / Allan Zimmermann</authors>
88
<owners>OpenIAP ApS</owners>

0 commit comments

Comments
 (0)