Skip to content

Commit 029bc86

Browse files
committed
bump
1 parent e8b2a29 commit 029bc86

18 files changed

Lines changed: 23 additions & 23 deletions

File tree

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.37
3+
VERSION = 0.0.38
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.37-py3-none-any.whl && python test.py
50+
pip uninstall openiap -y && pip install dist/openiap-0.0.38-py3-none-any.whl && python test.py
5151

5252
```
5353
dotnet

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.37"
5+
version = "0.0.38"
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.37"
5+
version = "0.0.38"
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.37"
5+
version = "0.0.38"
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.37";
62+
const VERSION: &str = "0.0.38";
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.37"
5+
version = "0.0.38"
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.37</version>
5+
<version>0.0.38</version>
66
<title>OpenIAP API Wrapper</title>
77
<authors>OpenIAP ApS / Allan Zimmermann</authors>
88
<owners>OpenIAP ApS</owners>

dotnet/openiap.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<PackageId>openiap</PackageId>
55
<id>openiap</id>
6-
<version>0.0.37</version>
6+
<version>0.0.38</version>
77
<title>OpenIAP API Wrapper</title>
88
<authors>OpenIAP ApS / Allan Zimmermann</authors>
99
<owners>OpenIAP ApS</owners>

0 commit comments

Comments
 (0)